-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (34 loc) · 818 Bytes
/
pyproject.toml
File metadata and controls
37 lines (34 loc) · 818 Bytes
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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "PyomoTools"
version = "0.3.6"
description = "A collection of tools to aid in formulating and working with Pyomo models."
authors = [
{ name="Nathan Barrett", email="nb5786@princeton.edu" }
]
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.7"
dependencies = [
"numpy>=1.21.0",
"pyomo>=6.0",
"scipy>=1.7.0",
"pandas>=2.3.0",
"pwlf>=2.5.1",
"matplotlib>=3.9.0",
"pytest>=8.4.0",
"PyQt5>=5.15.0",
"XlsxWriter>=3.2.3",
"openpyxl>=3.1.5",
"pyyaml>=6.0.2",
"gurobipy>=12.0.0",
"networkx"
]
[project.urls]
Homepage = "https://github.com/NathanDavisBarrett/PyomoTools"
[tool.setuptools.packages.find]
include = ["PyomoTools*"]
where = ["."]