-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
26 lines (24 loc) · 1.01 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pwasopt"
version = "0.1.4"
authors = [
{ name="Mengjia Zhu", email="[email protected]" },
{ name="Alberto Bemporad", email="[email protected]" },
]
description = "PWAS/PWASp - Global and Preference-based Optimization with Mixed Variables using (P)iece(w)ise (A)ffine (S)urrogates"
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
"numpy>=1.24.3,<2.0.0","scipy>=1.11.1","pulp==2.8.0","pyDOE==0.3.8","scikit-learn==1.5.0",
"pycddlib>=2.1.7,<3.0.0","pyparc>=2.0.4", "threadpoolctl==3.1.0", "cvxopt==1.2.7"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
keywords = ["Mixed-variable optimization","Mixed-integer optimization","global optimization", "preference-based optimization", "black-box optimization"]
[project.urls]
"Homepage" = "https://github.com/mjzhu-p/PWAS"