-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
101 lines (97 loc) · 2.17 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
94
95
96
97
98
99
100
101
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "cubed"
version = "0.19.0"
authors = [
{name = "Tom White", email = "[email protected]"},
]
license = {text = "Apache License 2.0"}
description = "Scalable array processing with bounded memory"
readme = {file = "README.md", content-type = "text/markdown"}
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.10"
dependencies = [
"aiostream",
"array-api-compat",
"cloudpickle",
"donfig",
"fsspec",
"mypy_extensions", # for rechunker
"ndindex",
"networkx != 2.8.3, != 2.8.4, != 2.8.5, != 2.8.6, != 2.8.7, != 2.8.8, != 3.0.*, != 3.1.*, != 3.2.*",
"numpy >= 1.22",
"psutil",
"tenacity",
"toolz",
"zarr",
]
[project.optional-dependencies]
diagnostics = [
"tqdm",
"graphviz",
"jinja2",
"pydot",
"pandas",
"matplotlib",
"rich",
"seaborn",
]
beam = ["apache-beam", "gcsfs"]
dask = ["dask < 2024.12.0"]
dask-distributed = ["distributed < 2024.12.0"]
lithops = ["lithops[aws] >= 2.7.0"]
lithops-aws = [
"cubed[diagnostics]",
"lithops[aws]",
"s3fs",
]
lithops-gcp = [
"cubed[diagnostics]",
"lithops[gcp]",
"gcsfs",
]
modal = [
"cubed[diagnostics]",
"modal",
"s3fs",
]
modal-gcp = [
"cubed[diagnostics]",
"modal",
"gcsfs",
]
coiled = [
"cubed[diagnostics]",
"coiled",
"dask[complete]",
"s3fs",
]
test = [
"cubed[diagnostics]",
"dill",
"numpy_groupies",
"pytest",
"pytest-cov",
"pytest-mock",
]
[project.urls]
homepage = "https://github.com/cubed-dev/cubed"
documentation = "https://tomwhite.github.io/cubed"
repository = "https://github.com/cubed-dev/cubed"
[tool.pytest.ini_options]
filterwarnings = [
"error::UserWarning",
]
testpaths = "cubed/tests"