-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
71 lines (63 loc) · 1.95 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
[build-system]
requires = [ "scikit-build-core", "pybind11@git+https://github.com/pybind/pybind11.git@master"]
build-backend = "scikit_build_core.build"
[project]
name = "panda-python"
version = "0.8.1"
description = "Python bindings for the Panda robot"
requires-python = ">=3.7"
dependencies = ["websockets>=11.0", "requests", "numpy"]
authors = [
{ name = "Jean Elsner", email = "[email protected]" },
]
license = {file = "LICENSE"}
readme = "README.md"
keywords = ["python", "real-time", "control", "robot", "franka", "emika"]
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Topic :: Scientific/Engineering",
"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.12",
]
[project.optional-dependencies]
examples = [
"roboticstoolbox-python",
"matplotlib",
"spatialmath-python",
"ansitable",
"qpsolvers",
]
docs = [
"furo",
"sphinx-reredirects",
"sphinx",
]
dev = [
"pybind11-stubgen",
]
[project.scripts]
panda-lock = "panda_py.cli:lock"
panda-unlock = "panda_py.cli:unlock"
panda-reboot = "panda_py.cli:reboot"
panda-take-control = "panda_py.cli:take_control"
panda-release-control = "panda_py.cli:release_control"
[tool.cibuildwheel]
manylinux-x86_64-image = "manylinux2014"
build = [ "cp37-*", "cp38-*", "cp39-*", "cp310-*", "cp311-*", "cp312-*",]
skip = [ "pp*", "*musllinux*",]
environment = "LIBFRANKA_VER=0.9.2"
[tool.cibuildwheel.linux]
before-all = [ "./bin/before_install_centos.sh",]
archs = [ "x86_64",]
[tool.scikit-build.cmake]
build-type = "Release"
[tool.scikit-build.wheel]
packages = ["src/panda_py"]
[tool.scikit-build.cmake.define]
VACUUM_GRIPPER = "ON"