-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
82 lines (76 loc) · 1.72 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]
author = CNES/CLS
author_email = fbriol@gmail.com
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
Natural Language :: English
Operating System :: MacOS
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Scientific/Engineering :: Physics
description = Zarr Collection
keywords = zarr, collection, xarray, dask
license = BSD License
license_files = LICENSE
long_description = file: README.rst
long_description_content_type = text/x-rst
name = zcollection
url = https://github.com/CNES/zcollection
version = attr: zcollection.version.__version__
[options]
include_package_data = True
install_requires =
dask >= 2022.8.0
distributed
fasteners
fsspec
numcodecs
numpy>=1.20
pandas
xarray
zarr>=2.11
package_dir =
= .
packages = find:
python_requires = >=3.8
zip_safe = False
[options.extras_require]
test =
pytest
pytest-cov
[options.package_data]
* = *.json
[flake8]
exclude = docs,tests
max-line-length = 80
ignore =
# Assigning lambda expression
E731
# Ambiguous variable names
E741
# line break before binary operator
W503
# line break after binary operator
W504
# whitespace before :
E203
[isort]
combine_as_imports=True
force_grid_wrap=0
force_sort_within_sections=True
force_to_top=typing
include_trailing_comma=True
line_length=80
multi_line_output=3
skip=
build
docs/source/conf.py
[mypy]
ignore_missing_imports=True
exclude=tests