-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
50 lines (46 loc) · 1.1 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
[project]
name = "mllam-data-prep"
version = "0.5.0"
description = "dataset preparation for data-driven weather models"
authors = [
{name = "Leif Denby", email = "[email protected]"},
{name = "Hauke Schulz", email = "[email protected]"},
{name = "Emy Alerskans", email = "[email protected]"},
{name = "Eleni Briola", email = "[email protected]"},
{name = "Joel Oskarsson", email = "[email protected]"},
]
dependencies = [
"xarray>=2024.2.0",
"zarr>=2.17.0",
"pyyaml>=6.0.1",
"loguru>=0.7.2",
"isodate>=0.6.1",
"requests>=2.31.0",
"aiohttp>=3.9.3",
"dataclass-wizard>=0.22.3",
"semver>=3.0.2",
"rich>=13.7.1",
"dask>=2024.2.1",
"psutil>=5.7.2",
]
requires-python = ">=3.9"
readme = "README.md"
license = {text = "MIT"}
[project.optional-dependencies]
dask-distributed = [
"dask[distributed]>=2024.7.1",
"bokeh!=3.0.*,>=2.4.2",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.isort]
profile = "black"
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
dev = [
"pytest>=8.0.2",
"ipdb>=0.13.13",
"pre-commit>=3.7.1",
]