-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
67 lines (59 loc) · 1.34 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
[metadata]
name = datacube-alchemist
license = Apache License 2.0
description = Batch process Open Data Cube datasets
keywords = datacube-alchemist,opendatacube
url = https://github.com/opendatacube/datacube-alchemist
long_description_content_type = text/markdown
long_description = file: README.md
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: Apache Software License
Programming Language :: Python
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Operating System :: OS Independent
platforms = any
[options]
packages = find:
zip_safe = True
setup_requires = setuptools_scm
install_requires =
datacube
eodatasets3>=0.22.0
attrs>=18.1
cattrs
structlog
dask
distributed
fsspec
requests
odc-algo
odc-apps-dc-tools
boto3
xarray
[options.packages.find]
exclude = tests
[options.entry_points]
console_scripts =
datacube-alchemist = datacube_alchemist.cli:cli_with_envvar_handling
[options.extras_require]
dev =
black
pytest
pytest-cov
moto
[flake8]
extend-ignore = E203
max-line-length = 120
exclude = docs,tests,.eggs
doctests = True
[wheel]
universal = 1
[tool:pytest]
norecursedirs = .git
addopts = --cov=datacube_alchemist
[coverage:run]
branch = True
omit = tests/*