forked from corteva/geocube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
77 lines (72 loc) · 1.71 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[metadata]
author = geocube Contributors
author_email = alansnow21@gmail.com
name = geocube
version = 0.3.4.dev0
description = Tool to convert geopandas vector data into rasterized xarray data.
keywords = geocube, GDAL, rasterize, vector
long_description = file: README.rst
long_description_content_type = text/x-rst
license = BSD license
license_files = LICENSE
platform = any
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Natural Language :: English
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Topic :: Scientific/Engineering :: GIS
Programming Language :: Python
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3
Topic :: Software Development :: Libraries :: Python Modules
Typing :: Typed
url = https://github.com/corteva/geocube
download_url = http://python.org/pypi/geocube
[options]
packages = find:
zip_safe = False # https://mypy.readthedocs.io/en/stable/installed_packages.html
include_package_data = True
python_requires = >=3.8
install_requires =
appdirs
click>=6.0
geopandas>=0.7
odc_geo
rasterio
rioxarray>=0.4
scipy
xarray>=0.17
pyproj>=2
numpy>=1.20
[options.packages.find]
include = geocube*
[options.package_data]
geocube =
py.typed
[options.entry_points]
console_scripts =
geocube = geocube.cli.geocube:geocube
[options.extras_require]
doc =
sphinx-click
nbsphinx
sphinx_rtd_theme
test =
pytest>=3.6
pytest-cov
packaging
netcdf4
dev =
%(doc)s
%(test)s
pylint
mypy
pre-commit
all =
%(doc)s
%(test)s
%(dev)s