forked from pangeo-forge/pangeo-forge-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
91 lines (82 loc) · 2.45 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
83
84
85
86
87
88
89
90
91
[metadata]
name = pangeo-forge-recipes
description = Pipeline tools for building and publishing analysis ready datasets.
long_description = file:README.md
long_description_content_type = text/markdown
maintainer = Ryan Abernathey
maintainer_email = [email protected]
classifiers =
Development Status :: 1 - Planning
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Intended Audience :: Science/Research
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Scientific/Engineering
url = https://github.com/pangeo-forge/pangeo-forge-recipes
license = Apache
keywords = pangeo, data
[options]
zip_safe = False
python_requires = >=3.8
packages = find:
include_package_data = True
install_requires =
setuptools
dask >= 2021.11.2
distributed >= 2021.11.2
h5py >= 3.3.0
intake >= 0.6.4
intake-xarray >= 0.4.1
xarray >=0.18.0
netcdf4
h5netcdf
zarr >= 2.6.0
numcodecs >= 0.9.0
fsspec[http] >= 2021.6.0
kerchunk >= 0.0.4
mypy_extensions >= 0.4.2
[options.extras_require]
dev =
click
pytest
pytest-sugar
pytest-cov
pytest-lazy-fixture
scipy
[flake8]
max-line-length = 100
[isort]
known_first_party=pangeo_forge_recipes
known_third_party=aiohttp,apache_beam,click,dask,fsspec,kerchunk,mypy_extensions,numpy,packaging,pandas,pkg_resources,prefect,pytest,pytest_lazyfixture,setuptools,xarray,yaml,zarr
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
combine_as_imports=True
line_length=100
[tool:pytest]
log_cli = False
timeout = 30
timeout_method = signal
markers =
no_executor: Tests that do not use an executor fixture.
executor_function: Tests that use the Python function executor.
executor_dask: Tests that use the Dask executor.
executor_prefect: Tests that use the Prefect executor.
executor_prefect_dask: Tests that use the Prefect executor with a Dask cluster.
# remove this once rechunker executors are factored into a standalone package
# that exports type hints (https://mypy.readthedocs.io/en/latest/installed_packages.html#installed-packages)
[mypy]
show_error_codes = True
[mypy-dask.*]
ignore_missing_imports = True
[mypy-rechunker.*]
ignore_missing_imports = True
[mypy-fsspec.*]
ignore_missing_imports = True
[mypy-zarr.*]
ignore_missing_imports = True
[mypy-yaml.*]
ignore_missing_imports = True