-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 945 Bytes
/
pyproject.toml
File metadata and controls
52 lines (47 loc) · 945 Bytes
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
[build-system]
requires = ["flit_core >=3.8,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "xarray_beam"
[project]
name = "xarray-beam"
dynamic = ["version"]
description = "Distributed Xarray with Apache Beam"
authors = [
{name = "Google LLC", email = "noreply@google.com"},
]
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10"
dependencies = [
"apache_beam>=2.31.0",
"dask",
"fsspec",
"immutabledict",
"zarr",
"xarray",
]
[project.urls]
source = "https://github.com/google/xarray-beam"
documentation = "https://xarray-beam.readthedocs.io"
[project.optional-dependencies]
tests = [
"absl-py",
"h5netcdf",
"hypothesis",
"pandas",
"pytest",
'zarr>=3',
]
docs = [
'myst-nb',
'myst-parser',
'sphinx',
'sphinx_rtd_theme',
'scipy',
]
[tool.pyink]
line-length = 80
preview = true
pyink-indentation = 2
pyink-use-majority-quotes = true