forked from ZEN-universe/ZEN-garden
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
69 lines (62 loc) · 1.42 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "zen_garden"
authors = [
{name = "Jacob Mannhardt", email = "[email protected]"},
{name = "Alissa Ganter"},
{name = "Johannes Burger"},
{name = "Francesco De Marco"},
{name = "Lukas Kunz"},
{name = "Lukas Schmidt-Engelbertz"},
{name = "Giovanni Sansavini"},
]
# do not change version manually! Done by bump2version
version = "2.0.11"
requires-python= ">=3.11"
description="ZEN-garden is an optimization model of energy systems and value chains."
readme = "README.md"
license = { file = "LICENSE.txt" }
dependencies = [
"xarray",
"cython",
"numpy<=1.26.4",
"pandas>=2.2",
"scipy<=1.14",
"pint",
"tables",
"pydantic",
"tsam",
"h5py",
"filelock",
"ordered-set",
"pyogrio",
"psutil",
"linopy<=0.3.10",
"requests",
"ipykernel",
"zen-temple"
]
[project.optional-dependencies]
docs = [
"sphinx==7.3.7",
"myst-parser==3.0.1",
"sphinx-book-theme==1.1.3",
"pydata-sphinx-theme==0.15.4",
"sphinx-reredirects==0.1.4",
"nbsphinx==0.9.4",
"nbsphinx-link==1.3.0",
]
dev = [
"pytest",
"coverage",
]
vis = [
"matplotlib",
]
gurobipy = ["gurobipy"]
[project.urls]
Homepage = "https://github.com/ZEN-universe/ZEN-garden"
Documentation = "https://zen-garden.readthedocs.io/en/latest/"
Zenodo = "https://zenodo.org/api/records/13385110"