-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
50 lines (46 loc) · 1.56 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
45
46
47
48
49
50
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyaugmecon"
version = "1.0.8"
requires-python = ">=3.8"
authors = [{ name = "Wouter Bles", email = "[email protected]" }]
description = "An AUGMECON based multi-objective optimization solver for Pyomo."
readme = "README.md"
keywords = ["python", "pyomo", "optimization", "multi-objective-optimization", "augmecon"]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Education"
]
dependencies = [
"pyomo ~=6.6",
"numpy ~=1.25",
"pandas ~=2.0",
"cloudpickle ~=3.0",
"pymoo ~=0.6",
"openpyxl ~=3.1",
]
[project.optional-dependencies]
dev = ["build", "twine"]
[project.urls]
Homepage = "https://github.com/wouterbles/pyaugmecon"
Changelog = "https://github.com/wouterbles/pyaugmecon/blob/main/CHANGELOG.md"
[tool.setuptools]
packages = ["pyaugmecon"]