-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
38 lines (32 loc) · 1.05 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
[build-system]
requires = ["scikit-build-core >=0.4.3", "nanobind >=2.0.0", "cmake >=3.1", "typing_extensions"]
build-backend = "scikit_build_core.build"
[project]
name = "vamp-planner"
version = "0.6.3"
description = "Vector-Accelerated Motion Planner"
readme = "README.md"
requires-python = ">=3.8"
authors = [
{ name = "Zachary Kingston", email = "zkingston@purdue.edu" },
{ name = "Wil Thomason", email = "wil.thomason@gmail.com" },
{ name = "Clayton Ramsey", email = "claytonwramsey@gmail.com" }
]
classifiers = [
]
dependencies = ["numpy"]
[project.optional-dependencies]
examples = ["fire", "pybullet", "pyyaml", "tqdm", "pandas", "tabulate", "xmltodict"]
heightmaps = ["pillow"]
[project.urls]
Homepage = "https://github.com/KavrakiLab/vamp"
[tool.scikit-build]
minimum-version = "0.4"
build-dir = "build/{wheel_tag}"
wheel.py-api = "cp312"
wheel.packages = ["src/vamp"]
cmake.build-type = "Release"
[tool.scikit-build.cmake.define]
VAMP_LTO = "OFF"
VAMP_ROBOT_MODULES="sphere;ur5;panda;fetch;baxter"
VAMP_ROBOT_STRUCTS="Sphere;UR5;Panda;Fetch;Baxter"