-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (29 loc) · 1.09 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "electricalsim_opf_quadratic"
version = "1.3"
author = "Dr. Ing. Ariel S. Loyarte"
authors = [
{ name="Dr. Ing. Ariel S. Loyarte", email="[email protected]" },
]
description = "Optimal Power Flow calculation with quadratic costs for the Electrical Grid Simulator (EGS)"
readme = "README_PyPI.md"
requires-python = ">=3.8"
dependencies = [
"electricalsim>=0.0.8.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = ["electrical networks", "simulation", "energy", "power systems", "optimal power flow", "Electrical Grid Simulator", "pandapower"]
license = {text = "MIT"}
[project.urls]
"Homepage" = "https://github.com/aloytag/electricalsim-opf-quadratic"
"Bug Tracker" = "https://github.com/aloytag/electricalsim-opf-quadratic/issues"
"Repository" = "https://github.com/aloytag/electricalsim-opf-quadratic"
[project.entry-points.'electricalsim.extensions']
opf_quadratic = 'electricalsim_opf_quadratic'