forked from pangeo-forge/pangeo-forge-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
90 lines (79 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
[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",
"cftime",
"dask >= 2021.11.2",
"fastparquet",
"fsspec[http] >= 2023.4.0",
"h5netcdf",
"h5py >= 3.3.0",
"kerchunk >= 0.0.7",
"netcdf4",
"numcodecs >= 0.9.0",
"xarray >= 0.18.0",
"zarr >= 2.12.0",
]
[project.optional-dependencies]
dev = [
"click",
# docker-py
"docker",
"pytest",
"pytest-cov",
"pytest-lazy-fixture",
"pytest-sugar",
"pytest-timeout",
"s3fs",
"scipy",
]
[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", "kerchunk", "numpy", "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"