forked from qpsolvers/qpbenchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
90 lines (82 loc) · 2.17 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
87
88
89
90
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "qpsolvers_benchmark"
readme = "README.md"
authors = [
{name = "Stéphane Caron", email = "stephane.caron@normalesup.org"},
]
maintainers = [
{name = "Stéphane Caron", email = "stephane.caron@normalesup.org"},
]
dynamic = ['version', 'description']
requires-python = ">=3.7"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"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 = [
"clarabel >=0.4.1",
"cvxopt >=1.2.6",
"ecos >=2.0.8",
"highspy >=1.1.2.dev3",
"matplotlib >=3.6.2",
"osqp >=0.6.2",
"pandas >=1.4.3",
"proxsuite >=0.3.0",
"qpsolvers >=3.0.0",
"quadprog >=0.1.11",
"scs >=3.2.0",
"tabulate >=0.9.0",
]
keywords = ["quadratic programming", "benchmark", "solvers", "numerical optimization"]
[project.optional-dependencies]
open_source_solvers = [
"cvxopt >= 1.3.0",
"ecos >= 2.0.10",
"highspy >= 1.1.2",
"osqp >= 0.6.2",
"proxsuite >= 0.3.0",
"quadprog >= 0.1.11",
"scs >= 3.2.2",
]
[project.urls]
Source = "https://github.com/stephane-caron/qpsolvers_benchmark"
Tracker = "https://github.com/stephane-caron/qpsolvers_benchmark/issues"
Changelog = "https://github.com/stephane-caron/qpsolvers_benchmark/blob/master/CHANGELOG.md"
[tool.black]
line-length = 79
[tool.flit.sdist]
exclude = ["data", "results"]
[tool.isort]
profile = "black"
line_length = 79
[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"!
"E741", # we have a variable called 'l'
]
[tool.ruff.pydocstyle]
convention = "google"