-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
84 lines (75 loc) · 1.99 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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "qpbenchmark"
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.9"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Mathematics",
]
dependencies = [
"matplotlib >=3.6.2",
"numpy >=1.25.2",
"pandas >=1.4.3",
"py-cpuinfo >=9.0.0",
"pyarrow >=15.0.0",
"qpsolvers >=4.3.1",
"tabulate >=0.9.0",
"tqdm >=4.67.1",
]
keywords = ["quadratic programming", "benchmark", "solvers", "numerical optimization"]
[project.scripts]
qpbenchmark = "qpbenchmark.benchmark:main"
[project.urls]
Homepage = "https://github.com/qpsolvers/qpbenchmark"
Source = "https://github.com/qpsolvers/qpbenchmark"
Tracker = "https://github.com/qpsolvers/qpbenchmark/issues"
Changelog = "https://github.com/qpsolvers/qpbenchmark/blob/main/CHANGELOG.md"
[tool.black]
line-length = 79
[tool.flit.sdist]
exclude = [
".github",
".gitignore",
]
[tool.isort]
profile = "black"
line_length = 79
[tool.ruff]
line-length = 79
[tool.ruff.lint]
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'
]
select = [
# pyflakes
"F",
# pycodestyle
"E",
"W",
# isort
"I001",
# pydocstyle
"D"
]
[tool.ruff.lint.pydocstyle]
convention = "google"