-
Notifications
You must be signed in to change notification settings - Fork 25
/
pyproject.toml
71 lines (68 loc) · 1.27 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=42",
"setuptools_scm[toml]>=3.4",
"wheel",
]
[project]
name = "rechunker"
description = "A library for rechunking arrays"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Pangeo developers", email = "[email protected]"},
]
requires-python = ">=3.8"
dynamic = [
"version",
]
dependencies = [
"dask[array,diagnostics]",
"mypy_extensions",
"zarr>=2.11",
]
[project.optional-dependencies]
complete = [
"apache_beam",
"fsspec",
"prefect<2",
"pyyaml",
"xarray>=2022.3",
]
dev = [
"black",
"codecov",
"flake8",
"hypothesis",
"IPython",
"mypy==0.782",
"nbsphinx",
"numpydoc",
"pytest",
"pytest-cov",
"sphinx",
"sphinx-pangeo-theme",
"sphinxcontrib-srclinks",
]
docs = [
"IPython",
"nbsphinx",
"numpydoc",
"sphinx",
"sphinx-pangeo-theme",
"sphinxcontrib-srclinks",
]
test = [
"hypothesis",
"pytest",
]
[project.urls]
documentation = "https://rechunker.readthedocs.io"
homepage = "https://pypi.org/project/rechunker/"
repository = "https://github.com/pangeo-data/rechunker"
[tool.setuptools]
packages = ["rechunker"]
[tool.setuptools_scm]
write_to = "rechunker/_version.py"
write_to_template = "__version__ = '{version}'"