-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
51 lines (48 loc) · 1.04 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
[metadata]
name = regi0
version = 0.2.4
author = Marcelo Villa-Piñeros
author_email = mvilla@humboldt.org.co
description = A Python toolkit to complement and verify biological records.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/PEM-Humboldt/regi0
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
python_requires = >=3.7, <3.10
include_package_data = True
install_requires =
appdirs
click
Fiona
geopandas>=0.10
numpy>=1.15
openpyxl
pandas
pygeos
rapidfuzz
rasterio>=1.2
rasterstats
requests
scipy
packages = find:
zip_safe = False
[options.entry_points]
console_scripts =
regi0 = regi0.cli.cli:main
[options.extras_require]
dev =
black
ipython
docs =
sphinx
sphinx-rtd-theme
test =
coverage
pytest