-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (60 loc) · 2.29 KB
/
pyproject.toml
File metadata and controls
65 lines (60 loc) · 2.29 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "pandahub/__init__.py"
[project]
name = "pandahub"
description = "Data hub for pandapower and pandapipes networks based on MongoDB"
authors = [
{ name = "Jan Ulffers", email = "jan.ulffers@iee.fraunhofer.de" },
{ name = "Leon Thurner", email = "leon.thurner@retoflow.de" },
{ name = "Jannis Kupka", email = "jannis.kupka@retoflow.de" },
{ name = "Mike Vogt", email = "mike.vogt@iee.fraunhofer.de" },
{ name = "Joschka Thurner", email = "joschka.thurner@retoflow.de" },
{ name = "Alexander Scheidler", email = "alexander.scheidler@iee.fraunhofer.de" },
]
license = { file = "LICENSE" }
readme = "README.md"
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"
]
keywords = ["network", "analysis", "optimization", "automation", "grid", "energy", "engineering", "simulation"]
requires-python = ">=3.9"
dependencies = [
"pandapower>=3.0",
"pandapipes>=0.7.0",
"pymongo>=4.9",
"pydantic",
"pydantic-settings",
"pymongoarrow",
"blosc",
]
dynamic = ["version"]
[project.optional-dependencies]
rest-api = ["fastapi[standard-no-fastapi-cloud-cli]>=0.104.0", "fastapi-users[beanie]>=12.0"]
test = ["pytest", "pytest-xdist", "simbench", "line_profiler"]
[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.ruff]
line-length = 120