-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
82 lines (75 loc) · 1.87 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
80
81
82
[metadata]
name = odc-stats
description = Statistical Product Generation Framework
version = attr: odc.stats._version.__version__
author = Open Data Cube
author_email =
maintainer = Open Data Cube
maintainer_email =
long_description_content_type = text/markdown
long_description = file: README.md
platforms = any
license = Apache License 2.0
url = https://github.com/opendatacube/odc-stats/
[options]
include_package_data = true
zip_safe = false
packages = find_namespace:
python_requires = >=3.8
tests_require = pytest
install_requires =
botocore
click>=8.0.0
dask
datacube!=1.8.14
distributed
numpy
odc-cloud[ASYNC]>=0.2.5
odc_algo
odc_dscache>=0.2.3
odc_io
odc_stac
pandas
pystac>=1.1.0
eodatasets3>=0.22.0
toolz
tqdm
xarray>=2023.1.0
ciso8601
gdal
fsspec>=2022.1.0
fiona
rasterio>=1.3.2
s3fs
tflite-runtime
tl2cgen
[options.entry_points]
console_scripts =
odc-stats = odc.stats.cli:main
[options.packages.find]
include =
odc*
# datacube_ows<1.8.21 has issue on function config internal over-writing
[options.extras_require]
ows =
datacube_ows>=1.8.21
sentry-sdk
blinker
[flake8]
extend-ignore =
# See https://github.com/PyCQA/pycodestyle/issues/373
E203,
# Allow individual bit of pytest to be imported: sometimes conciseness is nice.
PT013,
per-file-ignores =
# Jupyter notebooks display the final expression in cells
# Statement seems to have no effect (pointless-statement)
notebooks/s2-GM-stats.py: W0104
# Apparently unused imports are setting up the full CLI
odc/stats/cli.py: F401
# Note that Black will enforce all code to line-length of 88.
#
# But we have many old comments in the codebase that are longer than this and
# not worth dirtying the history to clean up, so we make Flake8's line length
# check lenient.
max-line-length = 120