-
Notifications
You must be signed in to change notification settings - Fork 41
/
setup.cfg
79 lines (75 loc) · 1.98 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
78
79
[metadata]
author = The GlacioHack Team
name = xdem
version = 0.0.20
description = Analysis of digital elevation models (DEMs)
keywords = dem, elevation, geoutils, xarray
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
license_files = LICENSE
platform = any
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: Science/Research
Natural Language :: English
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Topic :: Scientific/Engineering :: GIS
Topic :: Scientific/Engineering :: Image Processing
Topic :: Scientific/Engineering :: Information Analysis
Programming Language :: Python
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3
Topic :: Software Development :: Libraries :: Python Modules
Typing :: Typed
url = https://github.com/GlacioHack/xdem
download_url = https://pypi.org/project/xdem/
[options]
packages = find:
zip_safe = False # https://mypy.readthedocs.io/en/stable/installed_packages.html
include_package_data = True
python_requires = >=3.10,<3.13
# Avoid pinning dependencies in requirements.txt (which we don't do anyways, and we rely mostly on Conda)
# (https://caremad.io/posts/2013/07/setup-vs-requirement/, https://github.com/pypa/setuptools/issues/1951)
install_requires = file: requirements.txt
[options.package_data]
xdem =
py.typed
[options.packages.find]
include =
xdem
xdem.coreg
[options.extras_require]
opt =
opencv
openh264
pytransform3d
noisyopt
test =
pytest
pytest-xdist
pyyaml
flake8
pylint
richdem
doc =
sphinx
sphinx-book-theme
sphinxcontrib-programoutput
sphinx-design
sphinx-autodoc-typehints
sphinx-gallery
autovizwidget
graphviz
myst-nb
numpydoc
dev =
%(opt)s
%(test)s
%(doc)s
all =
%(dev)s