-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
43 lines (38 loc) · 981 Bytes
/
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
[metadata]
name = terrapi-client
version = attr: terrapi.client.__version__
author = Julian Zeidler, Jonas Eberle, Fabian Schindler
author_email = [email protected]
license = MIT
description =
long_description = file: README.md
long_description_content_type = text/markdown
url =
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
zip_safe = False
packages = find_namespace:
package_dir =
= src
include_package_data = True
python_requires = >=3.10
install_requires =
terrapi @ git+https://github.com/DLR-terrabyte/terrapi.git@latest-release
pystac>=1.8.4
pystac-client>=0.7.5
[options.packages.find]
where = src
exclude =
tests
# [options.package_data]
# terrabyte = *.json
[mypy]
exclude = (.tox|build|dist|.eggs|docs/conf.py|.venv|__init__.py|tests)
ignore_missing_imports = True
[flake8]
max-line-length = 90
exclude = .venv, build, tests
ignore = W503,E203