-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 1.1 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (40 loc) · 1.1 KB
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
[build-system]
requires = ["setuptools>=38.4", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "xpartition"
authors = [{name = "Spencer Clark", email = "spencerkclark@gmail.com"}]
license = {file = "LICENSE"}
description = "Tool for writing large xarray datasets to zarr stores with independent processes"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering"
]
requires-python = ">=3.11"
dependencies = ["xarray>=2024.10.0", "dask[array]>=2.9.0", "zarr"]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Repository = "https://github.com/spencerkclark/xpartition.git"
[tool.ruff]
exclude = [
".eggs",
"doc",
"__init__.py"
]
[tool.ruff.lint]
ignore = [
"E731",
"F401"
]
[tool.setuptools]
zip-safe = false
[tool.setuptools.dynamic]
version = {attr = "xpartition.xpartition.__version__"}