-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 809 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (36 loc) · 809 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
36
37
38
39
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "revoletion"
version = "1.2"
description = "Resilient Electric Vehicle Optimization model for Local Energy TransitION"
authors = [
{ name = "Philipp Rosner", email = "philipp.rosner@tum.de" },
{ name = "Brian Dietermann", email = "brian.dietermann@tum.de"}
]
dependencies = [
"geopy",
"graphviz",
"gurobipy",
"holidays",
"numpy",
"numpy_financial",
"oemof.solph==0.6.0a2",
"pandas==2.2.0",
"plotly",
"psutil",
"pvlib",
"pyomo==6.7.0",
"pytz",
"rainflow",
"scipy",
"simpy",
"timezonefinder",
"tk",
"windpowerlib"
]
[tool.setuptools]
packages = ["revoletion"]
[project.scripts]
revoletion = "revoletion.main:main"