-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.cfg
54 lines (48 loc) · 1.22 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[metadata]
name = geotiler
version = 0.15.1
author = Artur Wroblewski
author_email = [email protected]
description = GeoTiler - library to create maps using tiles from a map provider
long_description = file: README
long_description_content_type = text/x-rst
url = https://wrobell.dcmod.org/geotiler/
project_urls =
Code = https://github.com/wrobell/geotiler
Bug tracker = https://github.com/wrobell/geotiler/issues
classifiers =
Topic :: Scientific/Engineering :: GIS
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3.9
Development Status :: 4 - Beta
license = GPL (includes BSD licensed code)
[options]
packages = find:
python_requires = >= 3.9
include_package_data = True
scripts =
bin/geotiler-lint
bin/geotiler-route
bin/geotiler-fetch
install_requires =
Pillow >= 10.0.0
cytoolz >= 0.8.2
aiohttp >= 2.3.5
setuptools
[options.extras_require]
tests =
mypy
pytest-cov
pytest-timeout
pytest-asyncio
numpy
doc =
redis
pycairo
lxml
[tool:pytest]
addopts=--cov geotiler --cov-report=term-missing
[tool:coverage:report]
show_missing=1
partial_branches=1