-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (42 loc) · 1020 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
49
50
[tool.poetry]
name = "zap"
version = "0.1.0"
description = "Differentiable electricity models"
authors = ["degleris1 <[email protected]>"]
readme = "README.md"
license = "Apache-2.0"
exclude = [
"experiments",
"development",
]
[tool.poetry.dependencies]
python = ">=3.11,<3.13"
cvxpy = "^1.4.2"
numpy = "^1.26.4"
scipy = "^1.12.0"
torch = "~2.2.0"
pypsa = {version = "^0.27.0", optional = true}
sparse-dot-mkl = {version = "^0.9.6", optional = true}
attrs = "^24.2.0"
[tool.poetry.extras]
pypsa = ["pypsa"]
mkl = ["sparse-dot-mkl"]
[tool.poetry.group.dev.dependencies]
marimo = "^0.9.14"
matplotlib = "^3.9.2"
seaborn = "^0.13.2"
nbformat = "^5.10.4"
ipykernel = "^6.29.5"
[tool.poetry.group.experiment]
optional = true
[tool.poetry.group.experiment.dependencies]
wandb = "^0.18.5"
mosek = "^10.2.6"
[tool.poetry.group.docs.dependencies]
sphinx = "^8.1.3"
nbsphinx = "^0.9.5"
myst-parser = "^4.0.0"
furo = "^2024.8.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"