-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
52 lines (48 loc) · 1.52 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "electricalsim"
version = "0.0.8.14.dev2"
author = "Dr. Ing. Ariel S. Loyarte"
authors = [
{ name="Dr. Ing. Ariel S. Loyarte", email="[email protected]" },
]
description = "Graphical user interface for simulating electrical networks based on the pandapower library"
readme = "README_PyPI.md"
requires-python = ">=3.10,<3.12"
dependencies = [
"PySide6>=6.6.1",
"pandapower>=2.14.7",
"numba>=0.56.4,<0.61.0",
"pyqtdarktheme>=2.1.0",
"qtawesome>=1.3.1",
"pynput>=1.7.6",
"lightsim2grid>=0.7.1,<0.10.0",
"matplotlib>=3.6.0,<3.10.0",
"platformdirs>=3.0.0",
"pyshortcuts>=1.8.3",
"importlib_metadata>=4.11.3",
"fuzzysearch>=0.7.3",
"Grid2Op>=1.9.7",
"pyarrow>=15.0.0,<19.0.0",
"qtpy>=2.4.1",
"XlsxWriter>=3.2.0",
"pyqt-toast-notification>=1.3.2",
"requests>=2.30.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = ["electrical networks", "simulation", "energy", "power systems", "pandapower"]
license = {text = "MIT"}
[project.urls]
"Homepage" = "https://github.com/aloytag/electrical-grid-simulator"
"Bug Tracker" = "https://github.com/aloytag/electrical-grid-simulator/issues"
"Repository" = "https://github.com/aloytag/electrical-grid-simulator"
[project.scripts]
egs-create-shortcut = "electricalsim.egs_create_shortcut:create_shortcut"
[project.gui-scripts]
egs = "electricalsim.Electrical_Grid_Simulator:main"