-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
46 lines (39 loc) · 1.11 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyeplan"
authors = [
{ name="Shahab Dehghan", email="[email protected]" },
{ name="Agnes Nakiganda", email="[email protected]" },
{ name="Petros Aristidou", email="[email protected]" }
]
keywords = ['Operation', 'Planning', 'Microgrids']
description = "Python library for planning and operation of resilient microgrids."
readme = "README.md"
requires-python = ">=3.7"
license = { text = "Apache Software License" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"pandas",
"pyomo",
"networkx",
"matplotlib==3.3.0",
"timezonefinder",
"scikit-learn",
"openpyxl",
"ipython",
"mplleaflet"
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://pyeplan.sps-lab.org"
"Bug Tracker" = "https://github.com/SPS-L/pyeplan/issues"
[tool.setuptools]
packages = ["pyeplan"]
[tool.setuptools.dynamic]
version = { attr = "pyeplan.__version__" }