-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (70 loc) · 2.67 KB
/
pyproject.toml
File metadata and controls
74 lines (70 loc) · 2.67 KB
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
70
71
72
73
74
[build-system]
requires = ["build", "wheel", "setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pandaprosumer"
version = "0.1.3" # File format version '__format_version__' is tracked in __init__.py
authors=[
{ name = "Pratikshya Mohanty", email = "pratikshya.mohanty@iee.fraunhofer.de" },
{ name = "Erik Prade", email = "erik.prade@iee.fraunhofer.de" }
]
description = "A prosumer simulation tool that complements pandapower and pandapipes in the simulation of multi energy systems"
readme = "README.rst"
license = { file = "LICENSE" }
requires-python = ">=3.10,<3.12"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
# Add the specific Python versions supported here, e.g.:
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
dependencies = [
"astral==3.2",
"converter==1.0.0",
"matplotlib>=3.9.0",
"numpy>=1.25.0",
"pandapipes>=0.12.0",
"pandapower>=2.14.11",
"pandas>=1.5.3",
"savReaderWriter==3.4.2",
"scipy>=1.11.0",
"seaborn==0.12.2",
"simbench==1.4.0",
"tqdm==4.65.0",
"numba==0.59.1",
"openpyxl==3.1.5",
"CoolProp==6.7.0",
"pyomo==6.6.1"
]
keywords = [
"prosumer", "analysis", "controller", "automation", "grid", "energy", "engineering",
"simulation", "flexiblity", "system"
]
[project.urls]
Documentation = "https://pandaprosumer.readthedocs.io"
Source = "https://github.com/e2nIEE/pandaprosumer"
Repository = "https://github.com/e2nIEE/pandaprosumer.git"
Issues = "https://github.com/e2nIEE/pandaprosumer/issues"
Download = "https://pypi.org/project/pandaprosumer/#files"
Changelog = "https://github.com/e2nIEE/pandaprosumer/blob/develop/CHANGELOG.rst"
[project.optional-dependencies]
docs = ["numpydoc>=1.5.0", "sphinx>=5.3.0", "sphinx_rtd_theme>=1.1.1", "sphinxcontrib.bibtex>=2.5.0", "sphinx-pyproject"]
plotting = ["plotly", "igraph", "pvlib"]
test = ["pytest==8.3.3", "pytest-xdist", "pytest-split", "nbmake", "pvlib", "setuptools; python_version >= '3.10'"]
all = [
"numpydoc>=1.5.0", "sphinx>=5.3.0", "sphinx_rtd_theme>=1.1.1", "sphinxcontrib.bibtex>=2.5.0", "sphinx-pyproject",
"plotly", "igraph",
"pytest==8.3.3", "pytest-xdist", "pytest-split", "nbmake", "setuptools; python_version >= '3.10'"
]
[tool.setuptools.packages.find]
where = ["src"]
include = ["pandaprosumer*"]