-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 790 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (35 loc) · 790 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cru_to_cmr"
version = "0.1.0"
description = "CRU-to-CMR factorial model comparison"
requires-python = ">=3.12"
dependencies = [
"h5py>=3.12.1",
"jax>=0.4.38",
"jaxtyping>=0.2.36",
"numba>=0.61.0",
"scipy==1.15.0",
"simple-pytree>=0.2.2",
"tabulate>=0.9.0",
"tqdm>=4.67.1",
"matplotlib>=3.10.0",
"numpy>=2.0.0",
"pandas>=3.0.1",
"seaborn>=0.13.2",
"jaxcmr",
]
[project.optional-dependencies]
dev = [
"papermill>=2.6.0",
"ipykernel>=6.29.0",
"ruff>=0.9.0",
]
[dependency-groups]
dev = ["cru_to_cmr[dev]"]
[tool.hatch.build.targets.wheel]
packages = ["cru_to_cmr"]
[tool.uv.sources]
jaxcmr = { path = "../jaxcmr", editable = true }