-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (25 loc) · 851 Bytes
/
pyproject.toml
File metadata and controls
29 lines (25 loc) · 851 Bytes
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
[project]
name = "proxsuite"
version = "0.7.3"
description = "Quadratic Programming Solver for Robotics and beyond."
readme = "README.md"
requires-python = ">= 3.8"
license = "BSD-2-Clause"
dependencies = ["numpy","scipy"]
[project.urls]
homepage = "https://github.com/Simple-Robotics/proxsuite"
repository = "https://github.com/Simple-Robotics/proxsuite.git"
[build-system]
requires = [
"cmeel[build]",
"cmeel-eigen",
"cmeel-simde",
"typing-extensions",
]
build-backend = "cmeel.build"
[tool.cmeel]
configure-args = ["-DBUILD_TESTING:BOOL=OFF","-DBUILD_PYTHON_INTERFACE:BOOL=ON","-DBUILD_WITH_VECTORIZATION_SUPPORT:BOOL=ON","-DINSTALL_DOCUMENTATION:BOOL=OFF","-DBUILD_WITH_OPENMP_SUPPORT=OFF"]
[tool.ruff.lint]
ignore = [ "E741" ]
extend-select = ["W605"]
exclude = [ "cmake-module/*", "bindings/python/external/nanobind/*" ]