forked from UU-ER/AdOpT-NET0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (53 loc) · 1.39 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
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["adopt_net0"]
[tool.hatch.build]
include = ["adopt_net0/**"]
[tool.hatch.version]
path = "version.py"
[project]
name = "adopt_net0"
dynamic = ["version"]
authors = [
{name="Jan F. Wiegner", email="j.f.wiegner@uu.nl"},
{name="Julia L. Tiggeloven", email="j.l.tiggeloven@uu.nl"},
{name="Luca Bertoni", email="l.bertoni@uu.nl"},
{name="Inge Ossentjuk", email="i.m.ossentjuk@uu.nl"},
{name="Matteo Gazzani", email="m.gazzani@uu.nl"},
]
description = "A python package for multi energy system modelling"
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License"
]
dependencies = [
"Pyomo>=6.7.1",
"numpy>=1.26.4",
"dill>=0.3.8",
"pandas>=2.2.2",
"requests>=2.31.0",
"timezonefinder>=6.5.0",
"statsmodels>=0.14.1",
"pvlib>=0.10.4",
"scipy>=1.13.0",
"openpyxl>=3.1.2",
"pytest>=8.1.1",
"scikit-learn>=1.4.2",
"pwlf>=2.2.1",
"gurobipy>=11.0.1",
"scandir>=1.10.0",
"tables>=3.9.2",
"tsam>=2.3.1"
]
[project.urls]
Homepage = "https://github.com/UU-ER/AdOpT-NET0"
Issues = "https://github.com/UU-ER/AdOpT-NET0/issues"
Documentation = "https://adopt-net0.readthedocs.io"