forked from e2nIEE/pandapipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
68 lines (64 loc) · 2.47 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
61
62
63
64
65
66
67
68
[build-system]
requires = ["build", "wheel", "setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pandapipes"
version = "0.10.0" # File format version '__format_version__' is tracked in __init__.py
authors=[
{ name = "Simon Ruben Drauz-Mauel", email = "[email protected]" },
{ name = "Daniel Lohmeier", email = "[email protected]" },
{ name = "Jolando Marius Kisse", email = "[email protected]" }
]
description = "A pipeflow calculation tool that complements pandapower in the simulation of multi energy grids"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
dependencies = [
"pandapower ~= 2.14.6",
"matplotlib",
"shapely",
]
keywords = [
"network", "analysis", "optimization", "automation", "grid", "energy", "engineering",
"simulation", "pipeflow", "pandapipes", "gas"
]
[project.urls]
Homepage = "https://www.pandapipes.org"
Documentation = "https://pandapipes.readthedocs.io"
Source = "https://github.com/e2nIEE/pandapipes"
Repository = "https://github.com/e2nIEE/pandapipes.git"
Issues = "https://github.com/e2nIEE/pandapipes/issues"
Download = "https://pypi.org/project/pandapipes/#files"
Changelog = "https://github.com/e2nIEE/pandapipes/blob/develop/CHANGELOG.rst"
[project.optional-dependencies]
docs = ["numpydoc", "sphinx", "sphinx_rtd_theme", "sphinxcontrib.bibtex", "sphinx-pyproject"]
plotting = ["plotly", "igraph"]
test = [
"pytest", "pytest-xdist", "pytest-split", "nbmake", "numba",
"setuptools; python_version >= '3.12'"
]
all = [
"numpydoc", "sphinx", "sphinx_rtd_theme", "sphinxcontrib.bibtex",
"plotly", "igraph", "pytest", "pytest-xdist", "pytest-split", "nbmake", "numba",
"setuptools; python_version >= '3.12'"
]
[tool.setuptools.packages.find]
where = ["src"]
include = ["pandapipes*"]