-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
62 lines (55 loc) · 1.56 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
[build-system]
requires = [
"scikit-build-core>=0.3",
"setuptools_scm",
"numpy>=2.0.0",
"cython>=3.0",
]
build-backend = "scikit_build_core.build"
[project]
name = "sdf-xarray"
dynamic = ["version"]
license = { file = "LICENCE" }
readme = "README.md"
authors = [
{ name = "Peter Hill", email = "[email protected]" },
{ name = "Joel Adams", email = "[email protected]" },
{ name = "Shaun Doherty", email = "[email protected]" },
]
requires-python = ">=3.10"
dependencies = [
"numpy>=2.0.0",
"xarray>=2024.1.0",
"dask>=2024.7.1",
"cython>=3.0",
]
description = "Provides a backend for xarray to read SDF files as created by the EPOCH plasma PIC code."
[project.optional-dependencies]
docs = [
"sphinx>=5.3",
"sphinx_autodoc_typehints>=1.19",
"sphinx-book-theme>=0.4.0rc1",
"sphinx-argparse-cli>=1.10.0",
"sphinx-inline-tabs",
"pickleshare",
"ipython",
"matplotlib",
]
test = ["pytest >= 3.3.0", "dask[complete]"]
lint = ["ruff"]
build = ["cibuildwheel[uv]"]
jupyter = ["dask[diagnostics]", "ipykernel>=6.29.5"]
[project.entry-points."xarray.backends"]
sdf_engine = "sdf_xarray:SDFEntrypoint"
[tool.scikit-build]
metadata.version.provider = "scikit_build_core.metadata.setuptools_scm"
sdist.include = ["src/sdf_xarray/_version.py"]
[tool.setuptools_scm]
write_to = "src/sdf_xarray/_version.py"
[tool.cibuildwheel]
build-frontend = "build[uv]"
skip = ["*-win32", "*-manylinux_i686", "pp*", "*musllinux*"]
test-extras = ["test"]
test-command = "pytest {project}/tests"
[tool.uv]
cache-keys = [{ file = "pyproject.toml" }, { git = true }]