-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (51 loc) · 1.76 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
[build-system]
requires = ["scikit-build-core", "pybind11"]
build-backend = "scikit_build_core.build"
[project]
name = "panda-model"
description = "panda-model allows the offline use of the Model class from libfranka in Python and C++."
version = "0.2.0"
requires-python = ">=3.7"
authors = [
{ name = "Jean Elsner", email = "[email protected]" },
]
dependencies = [
'numpy'
]
license = {file = "LICENSE"}
readme = "README.md"
keywords = ["python", "robotics", "panda", "libfranka", "dynamics", "franka", "emika", "jacobian", "model", "control", "simulation", "robot-manipulator"]
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",
]
[project.optional-dependencies]
test = [
"pytest"
]
[project.urls]
homepage = "https://github.com/JeanElsner/panda_model"
documentation = "https://panda-model.readthedocs.io"
repository = "https://github.com/JeanElsner/panda_model"
[tool.scikit-build]
cmake.build-type = "Release"
[tool.scikit-build.cmake.define]
BUILD_PYTHON = "ON"
[project.scripts]
panda-model-download = "panda_model.download:run"
[tool.cibuildwheel]
manylinux-x86_64-image = "manylinux2014"
build = ["cp37-*", "cp38-*", "cp39-*", "cp310-*", "cp311-*"]
skip = ["pp*", "*musllinux*"]
test-command = "pytest {package}/tests/test_without_fci.py"
test-extras = ["test"]
[tool.cibuildwheel.linux]
before-all = "yum install -y eigen3-devel poco-devel"
archs = ["x86_64"]