-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
67 lines (60 loc) · 1.83 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
# PEP 518
[build-system]
requires = ["scikit-build-core"]
build-backend = "scikit_build_core.build"
# PEP 621
[project]
name = "qi"
description = "LibQi Python bindings"
version = "3.1.5"
readme = "README.rst"
requires-python = ">=3.7"
license = { "file" = "COPYING" }
keywords=[
"libqi",
"qi",
"naoqi",
"aldebaran",
"robotics",
"robot",
"nao",
"pepper",
"romeo",
"plato",
]
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Embedded Systems",
"Framework :: Robot Framework :: Library",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
]
maintainers = [
{ email = "[email protected]" },
{ name = "Vincent Palancher", email = "[email protected]" },
{ name = "Jérémy Monnon", email = "[email protected]" },
]
[project.urls]
repository = "https://github.com/aldebaran/libqi-python"
[tool.scikit-build]
# Rely only on CMake install, not on Python packages detection.
wheel.packages = []
[tool.scikit-build.cmake.define]
# Disable building tests by default when building a wheel.
BUILD_TESTING = "OFF"
[tool.cibuildwheel]
build = "cp*manylinux*x86_64"
build-frontend = "build"
[tool.cibuildwheel.linux]
before-all = ["ci/cibuildwheel_linux_before_all.sh {package}"]
[tool.cibuildwheel.linux.config-settings]
"cmake.args" = ["--preset=conan-release"]