forked from mllam/mllam-data-prep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (41 loc) · 883 Bytes
/
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
[project]
name = "mllam-data-prep"
version = "0.3.0"
description = "dataset preparation for data-driven weather models"
authors = [
{name = "Leif Denby", 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",
]
requires-python = ">=3.9"
readme = "README.md"
license = {text = "MIT"}
[project.optional-dependencies]
dask-distibuted = [
"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",
]