-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathpyproject.toml
121 lines (108 loc) · 2.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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
[project]
name = "rvc3python"
version = "0.9.2"
authors = [{ name = "Peter Corke", email = "rvc@petercorke.com" }]
description = "Support for book: Robotics, Vision & Control 3 in Python"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Development Status :: 5 - Production/Stable",
# Indicate who your project is intended for
"Intended Audience :: Developers",
# Specify the Python versions you support here.
"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",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = [
"robotics",
"robot",
"manipulator",
"robot arm",
"mobile robot",
"mobile manipulation",
"path planning",
"SLAM",
"pose graph",
"Dubins",
"Reeds-Shepp",
"lattice planner",
"RRT",
"PRM",
"rapidly exploring random tree",
"probabilistic roadmap planner",
"force control",
"kinematics",
"Jacobian",
"position control",
"velocity control",
"spatial math",
"SO(2)",
"SE(2)",
"SO(3)",
"SE(3)",
"twist",
"product of exponential",
"translation",
"orientation",
"angle-axis",
"Lie group",
"skew symmetric matrix",
"pose",
"translation",
"rotation matrix",
"rigid body transform",
"homogeneous transformation",
"Euler angles",
"roll-pitch-yaw angles",
"quaternion",
"unit-quaternion",
"computer vision",
"machine vision",
"robotic vision",
"color space",
"blackbody",
"image segmentation",
"blobs",
"Hough transform",
"k-means",
"homography",
"camera calibration",
"visual odometry",
"bundle adjustment",
"stereo vision",
"rectification",
]
dependencies = [
"matplotlib",
"numpy < 2", # OpenCV and SpatialGeom don't like numpy 2
"roboticstoolbox-python >= 1",
"machinevision-toolbox-python",
"bdsim >= 1.1",
"IPython",
"sympy",
"pybullet",
]
[project.urls]
"Homepage" = "https://github.com/petercorke/RVC3-python"
"Bug Tracker" = "https://github.com/petercorke/RVC3-python/issues"
"Source" = "https://github.com/petercorke/RVC3-python"
[project.optional-dependencies]
pytorch = ["torch", "torchvision"]
[project.scripts]
rvctool = "RVC3.bin.rvctool:main"
bdsim_path = "RVC3.bin.bdsim_path:main"
[build-system]
requires = ["setuptools", "oldest-supported-numpy"]
build-backend = "setuptools.build_meta"
# [tool.setuptools.packages.find]
# where = ["."]
[tool.setuptools.package-data]
models = ["*.bd"]
[tool.setuptools]
packages = ["RVC3", "RVC3.examples", "RVC3.tools", "RVC3.bin", "RVC3.models"]