-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpyproject.toml
93 lines (82 loc) · 2.36 KB
/
pyproject.toml
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
92
93
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pangeo-forge-recipes"
dynamic = ["version"]
requires-python = ">=3.8"
description = "Pipeline tools for building and publishing analysis ready datasets."
readme = "README.md"
authors = [
{ name = "Ryan Abernathey", 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",
]
license = { text = "Apache-2.0" }
keywords = ["pangeo", "data"]
dependencies = [
"apache-beam>=2.48",
"cftime",
"dask",
"fastparquet",
"fsspec[http]",
"h5netcdf",
"h5py",
"kerchunk!=0.2.6",
"netcdf4",
"numcodecs",
"xarray",
"zarr",
]
[project.optional-dependencies]
test = [
"click",
"pytest<8.0.0",
"pytest-cov",
"pytest-xdist",
"pytest-lazy-fixture",
"pytest-sugar",
"pytest-timeout",
"s3fs",
"gcsfs",
"scipy",
]
minio = [
"docker",
]
[project.urls]
Homepage = "https://github.com/pangeo-forge/pangeo-forge-recipes"
Tracker = "https://github.com/pangeo-forge/pangeo-forge-recipes/issues"
Documentation = "https://pangeo-forge.readthedocs.io/en/latest/"
[tool.setuptools_scm]
write_to = "pangeo_forge_recipes/_version.py"
write_to_template = "__version__ = '{version}'"
[tool.setuptools.packages.find]
exclude = ["docs_src"]
[tool.setuptools.package-data]
pangeo_forge_recipes = ["py.typed"]
[tool.black]
line-length = 100
[tool.isort]
known_first_party = "pangeo_forge_recipes"
known_third_party = ["aiohttp", "apache_beam", "cftime", "click", "dask", "fsspec", "gcsfs", "kerchunk", "numpy", "packaging", "pandas", "pytest", "pytest_lazyfixture", "s3fs", "xarray", "zarr"]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
combine_as_imports = true
line_length = 100
[tool.pytest.ini_options]
log_cli = false
timeout = 30
timeout_method = "signal"
[project.entry-points."pangeo_forge_runner.injection_specs"]
default_injections = "pangeo_forge_recipes.injections:get_injection_specs"