-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (83 loc) · 2.57 KB
/
Copy pathpyproject.toml
File metadata and controls
94 lines (83 loc) · 2.57 KB
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
91
92
93
94
[project]
name = "cyqlone"
readme = "python/README.rst"
requires-python = ">=3.9"
license = "LGPL-3.0-or-later"
license-files = ["LICENSE"]
authors = [{ "name" = "Pieter P", "email" = "pieter.p.dev@outlook.com" }]
keywords = ["optimization", "qpalm", "mpc", "ocp", "qp", "qp solver"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: POSIX :: Linux",
"Typing :: Typed",
]
dependencies = ["numpy<3"]
dynamic = ["version", "description"]
[project.optional-dependencies]
test = ["pytest>=7.2.0,<9", "qpalm~=1.2.6"]
docs = [
"sphinx==8.2.3",
"sphinx-book-theme==1.1.4",
"numpydoc==1.9.0",
"breathe==4.36.0",
]
[project.urls]
"Documentation" = "https://kul-optec.github.io/cyqlone"
"Source" = "https://github.com/kul-optec/cyqlone"
"Bug Tracker" = "https://github.com/kul-optec/cyqlone/issues"
[build-system]
requires = [
"py-build-cmake~=0.6.0a2",
"numpy<3",
"conan~=2.22.0",
"typing_extensions<5; python_version < '3.11'",
]
build-backend = "py_build_cmake.build"
[tool.py-build-cmake.module]
directory = "python"
[tool.py-build-cmake.sdist]
include = ["conanfile.py", "CMakeLists.txt", "src", "cmake", "interfaces", "test"]
[tool.py-build-cmake.wheel]
python_abi = "abi3"
abi3_minimum_cpython_version = 312
[tool.py-build-cmake.conan.cmake]
minimum_version = "4.1"
source_path = "."
args = ["-Wdev"]
build_type = "Release"
install_components = ["python_modules", "python_nanobind", "python_stubs"]
[tool.py-build-cmake.conan]
args = [
"--build=missing",
"-o&:with_examples=False",
"-o&:with_python=True",
"-o&:with_matio=True",
"-c*:tools.build:skip_test=True",
"-s*:compiler.cppstd=23",
]
[tool.py-build-cmake.linux.conan.cmake]
generator = "Ninja"
[tool.py-build-cmake.mac.conan.cmake]
generator = "Ninja"
[tool.py-build-cmake.windows.conan]
args = ['-c*:tools.build:compiler_executables*={"fortran": "FC-NOTFOUND"}']
[tool.py-build-cmake.editable]
mode = "symlink"
[tool.cibuildwheel]
build-verbosity = 1
environment = { PY_BUILD_CMAKE_VERBOSE = "1" }
[tool.cibuildwheel.linux]
archs = ["x86_64"]
[tool.pytest.ini_options]
minversion = "7.0"
testpaths = ["python/test"]