forked from mllam/mllam-verification
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 924 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (35 loc) · 924 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
[project]
name = "mllam-verification"
version = "0.1.0"
description = "Verification of neural-lam, e.g. performance of the model relative to the truth, persistence, etc."
authors = [{ name = "Martin Frølund", email = "maf@dmi.dk" }]
dependencies = [
"xarray>=2024.2.0",
"zarr>=2.17.0",
"loguru>=0.7.2",
"matplotlib>=3.9.4",
"scores>=1.2.0",
"dask[distributed]>=2024.8.0",
"pydantic>=2.11.5",
]
requires-python = ">=3.9"
readme = "README.md"
license = { text = "MIT" }
[dependency-groups]
dev = [
"pytest>=8.0.2",
"pre-commit>=3.7.1",
"ipdb>=0.13.13",
"black[jupyter]>=25.1.0",
"flake8>=7.2.0",
"isort>=6.0.1",
"setuptools>=80.9.0", # needed by isort
]
docs = ["ipykernel>=6.29.5", "cartopy>=0.23.0"]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.black]
line-length = 90