forked from qpsolvers/qpsolvers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
86 lines (79 loc) · 2.29 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "qpsolvers"
readme = "README.md"
authors = [
{name = "Stéphane Caron", email = "[email protected]"},
]
maintainers = [
{name = "Stéphane Caron", email = "[email protected]"},
]
dynamic = ['version', 'description']
requires-python = ">=3.7"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Mathematics",
]
dependencies = [
"daqp >=0.5.1",
"ecos >=2.0.8",
"numpy >=1.15.4",
"osqp >=0.6.2",
"scipy >=1.2.0",
"scs >=3.2.0",
]
keywords = ["quadratic programming", "solver", "numerical optimization"]
[project.optional-dependencies]
clarabel = ["clarabel >=0.4.1"]
cvxopt = ["cvxopt >=1.2.6"]
daqp = ["daqp >=0.5.1"]
ecos = ["ecos >=2.0.8"]
highs = ["highspy >=1.1.2.dev3"]
mosek = ["cvxopt >=1.2.6", "mosek >=10.0.40"]
osqp = ["osqp >=0.6.2"]
piqp = ["piqp >=0.2.2"]
proxqp = ["proxsuite >=0.2.9"]
qpalm = ["qpalm >=1.2.1"]
quadprog = ["quadprog >=0.1.11"]
scs = ["scs >=3.2.0"]
open_source_solvers = ["qpsolvers[clarabel,cvxopt,daqp,ecos,highs,osqp,piqp,proxqp,qpalm,quadprog,scs]"]
[project.urls]
Documentation = "https://qpsolvers.github.io/qpsolvers/"
Source = "https://github.com/qpsolvers/qpsolvers"
Tracker = "https://github.com/qpsolvers/qpsolvers/issues"
Changelog = "https://github.com/qpsolvers/qpsolvers/blob/main/CHANGELOG.md"
[tool.black]
line-length = 79
[tool.coverage]
report.include = ["qpsolvers/*"]
report.omit = ["qpsolvers/unsupported/*"]
[tool.ruff]
line-length = 79
select = [
# pyflakes
"F",
# pycodestyle
"E",
"W",
# isort
"I001",
# pydocstyle
"D"
]
ignore = [
"D401", # good for methods but not for class docstrings
"D405", # British-style section names are also "proper"!
]
[tool.ruff.pydocstyle]
convention = "numpy"