forked from leifdenby/gribscan-harmonie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (39 loc) · 875 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
[project]
name = "gribscan-harmonie"
version = "0.1.0"
description = "Default template for PDM package"
authors = [
{name = "Leif Denby", email = "[email protected]"},
]
dependencies = [
"isodate>=0.6.1",
"pandas>=2.2.2",
"tqdm>=4.66.2",
"loguru>=0.7.2",
"gribscan @ git+https://github.com/leifdenby/gribscan@harmonie-rotated-and-lambert-grids",
"xarray>=2024.3.0",
"zarr>=2.17.2",
"scipy>=1.13.0",
"fsspec>=2024.3.1",
"dask[diagnostics]>=2024.4.2",
]
requires-python = ">=3.9"
readme = "README.md"
license = {text = "MIT"}
[project.optional-dependencies]
viz = [
"matplotlib>=3.8.4",
"ipykernel>=6.29.4",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.isort]
profile = "black"
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
dev = [
"pre-commit>=3.7.0",
"pytest>=8.1.1",
]