-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
64 lines (59 loc) · 2.5 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
[build-system]
requires = ["build", "wheel", "setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pandahub"
version = "0.3.11" # File format version '__format_version__' is tracked in __init__.py
authors=[
{ name = "Jan Ulffers", email = "[email protected]" },
{ name = "Leon Thurner", email = "[email protected]" },
{ name = "Jannis Kupka", email = "[email protected]" },
{ name = "Mike Vogt", email = "[email protected]" },
{ name = "Joschka Thurner", email = "[email protected]" },
{ name = "Alexander Scheidler", email = "[email protected]" },
]
description = "Data hub for pandapower and pandapipes networks based on MongoDB"
readme = "README.md"
license = { file = "LICENSE" }
dynamic = ["dependencies"]
requires-python = ">=3.8"
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
keywords = [
"network", "analysis", "optimization", "automation", "grid", "energy", "engineering", "simulation",
]
[project.urls]
Homepage = "https://github.com/e2nIEE/pandahub"
Documentation = "https://pandapipes.readthedocs.io"
Source = "https://github.com/e2nIEE/pandahub"
Repository = "https://github.com/e2nIEE/pandahub.git"
Issues = "https://github.com/e2nIEE/pandahub/issues"
Download = "https://pypi.org/project/pandahub/#files"
Changelog = "https://github.com/e2nIEE/pandahub/blob/develop/CHANGELOG.md"
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[project.optional-dependencies]
docs = ["numpydoc", "sphinx", "sphinx_rtd_theme", "sphinxcontrib.bibtex", "sphinx-pyproject"]
test = ["pytest", "pytest-xdist", "nbmake", "simbench", "line_profiler"]
all = [
"numpydoc", "sphinx", "sphinx_rtd_theme", "sphinxcontrib.bibtex", "sphinx-pyproject",
"pytest", "pytest-xdist", "nbmake", "simbench", "line_profiler",
]
[tool.setuptools.packages]
find = {}