-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (47 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
51 lines (47 loc) · 1.53 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
[build-system]
requires = ["setuptools>61"]
build-backend = "setuptools.build_meta"
[project]
name = "energiapy"
version = "2.1.6"
authors = [
{ name="Rahul Kakodkar", email="cacodcar@gmail.com" },
{name = "Efstratios N. Pistikopoulos", email = "stratos@tamu.edu"}
]
maintainers = [
{ name="Rahul Kakodkar", email="cacodcar@gmail.com" },
]
description = "For multiscale modeling and optimization of energy systems"
requires-python = ">=3.12"
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["modeling", "optimization", "energy systems", "ems", "multiscale"]
classifiers = [
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ["gana", "ppopt", "IPython", "matplotlib", "scipy", "pandas", "numpy", "gurobipy"]
[project.optional-dependencies]
all = ["pvlib", "windpowerlib", "h5pyd"]
test = ["coverage", "pytest", "pytest-cov", "hypothesis", "flake8"]
docs = [
"sphinx",
"sphinx-book-theme",
"nbsphinx",
"sphinx_mdinclude",
"myst-nb",
"sphinxcontrib-bibtex",
"sphinx-copybutton",
"sphinx-togglebutton",
"sphinx-thebe",
"sphinx-design",
"sphinx-examples",
"sphinx-tabs",
"sphinxext-opengraph",
]
[project.urls]
Homepage = "https://github.com/TAMUparametric/energiapy"
Issues = "https://github.com/TAMUparametric/energiapy/issues"
Changelog = "https://github.com/yourusername/yourrepo/blob/main/CHANGELOG.md"