-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (77 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
86 lines (77 loc) · 1.66 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
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
[project]
name = "climemu"
version = "0.1.9"
description = "Score-based generative emulation of impact-relevant earth system model outputs"
readme = "README.md"
authors = [
{ name = "Shahine Bouabid", email = "shahineb@mit.edu" },
]
requires-python = ">=3.11"
license = { text = "MIT" }
dependencies = [
"diffrax>=0.7,<0.8",
"einops>=0.8,<0.9",
"equinox>=0.13,<0.14",
"huggingface-hub>=0.35,<0.36",
"jax>=0.5,<0.8",
"netcdf4>=1.7.2",
"numpy>=2.0,<2.4",
"xarray>=2024.1.0,<2026",
]
[project.optional-dependencies]
cuda = [
"jax[cuda]>=0.5,<0.8"
]
cuda12 = [
"jax[cuda12]>=0.5,<0.8"
]
tpu = [
"jax[tpu]>=0.5,<0.8"
]
train = [
"dask>=2025.7.0",
"torch>=2.8.0",
"healpy>=1.18.1",
"optax>=0.2.5",
"scikit-learn>=1.7.1",
"scipy>=1.16.1",
"tqdm>=4.67.1",
"wandb>=0.21.3",
]
plots = [
"matplotlib>=3.10.6",
"seaborn>=0.13.2",
"cartopy>=0.25.0",
"regionmask>=0.13.0",
"pandas>=2.3.2",
"pyshtools>=4.13.1",
]
test = [
"pytest>=8.0.0",
"pytest-cov>=4.0.0",
"pytest-mock>=3.10.0",
"jaxlib>=0.4.0",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning:equinox.internal._noinline",
"ignore::DeprecationWarning:jax.interpreters.batching",
]
[dependency-groups]
dev = [
"pytest>=8.4.2",
"pytest-cov>=7.0.0",
"pytest-mock>=3.15.1",
]
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true