-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 857 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 857 Bytes
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
[project]
name = "modelling-energy-systems"
version = "0.1.0"
# authors = ["Stefan Pfenninger <stefan@pfenninger.org>"]
[tool.pixi.project]
channels = ["conda-forge", "gurobi"]
platforms = ["osx-arm64", "linux-64", "win-64"]
[tool.pixi.tasks]
figures = "modelling_energy_systems"
html = "jupyter-book build ."
clean = "jupyter-book clean ."
build = {depends-on = ["figures", "html"] }
[tool.pixi.dependencies]
python = "3.12.*"
jupyter-book = "1.0.4.post1.*"
sphinx-book-theme = "1.1.4.*"
numpy = "2.3.2.*"
matplotlib = "3.10.5.*"
click = "8.1.*"
seaborn = "0.13.2.*"
glpk = "5.0.*"
ipopt = "3.14.16.*"
gurobi = "12.*"
pyomo = "6.8.2.*"
[tool.pixi.pypi-dependencies]
modelling_energy_systems = { path = ".", editable = true }
sphinx-proof = "==0.2.0"
optimutils = "==1.1"
[project.scripts]
modelling_energy_systems = "modelling_energy_systems.cli:run"