-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
48 lines (44 loc) · 904 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
46
47
48
[project]
name = "weather-model-graphs"
version = "0.2.0"
description = "Tools for creating and visualising data-driven weather model graphs"
authors = [
{name = "Leif Denby", email = "[email protected]"},
]
dependencies = [
"numpy>=1.26.4",
"loguru>=0.7.2",
"networkx>=3.3",
"scipy>=1.13.0",
"pyproj>=3.7.0",
]
requires-python = ">=3.10"
readme = "README.md"
license = {text = "MIT"}
[project.optional-dependencies]
pytorch = [
"torch>=2.3.0",
"torch-geometric>=2.5.3",
]
visualisation = [
"matplotlib>=3.8.4",
"ipykernel>=6.29.4",
"cartopy>=0.24.1",
]
docs = [
"jupyter-book>=1.0.0",
"sphinxcontrib-mermaid>=0.9.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.2.0",
"nbval>=0.11.0",
"ipdb>=0.13.13",
]