-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpyproject.toml
32 lines (30 loc) · 915 Bytes
/
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 = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "openTEPES"
dist-name = "openTEPES"
author = "IIT-EnergySystemModels"
author-email = "andres.ramos@comillas.edu"
home-page = "https://pascua.iit.comillas.edu/aramos/openTEPES/index.html"
classifiers = [
"Development Status :: 5 - Production/Stable","Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",]
requires-python = ">=3.11"
description-file = "README.rst"
requires = [
"pyomo>=5.7.3",
"matplotlib>=3.3.4",
"numpy>=1.20.1",
"pandas>=1.2.3",
"plotly>=5.7.0",
"colour>=0.1.5",
"altair>=5.0.0",
"psutil>=5.8.0",
"jsonschema>=4.16.0",
"networkx>=3.3",
"dill>=0.3.8",]
[tool.flit.scripts]
openTEPES_Main = "openTEPES:main"