-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
75 lines (72 loc) · 1.5 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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "faive_system"
version = "0.1.0"
description = "A robotic hand control system"
authors = [
{name = "Barnabas Gavin Cangan", email = "[email protected]"},
{name = "Chenyu Yang", email = "[email protected]"},
{name = "Davide Liconti", email = "[email protected]"},
]
requires-python = ">=3.6"
dependencies = [
"numpy==1.26.4",
"scipy>=1.14.0",
"tqdm",
"pyserial"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.10",
]
[project.optional-dependencies]
hand = [
"dynamixel-sdk>=3.7.0",
]
gui = [
"tkinter",
]
retargeter = [
"torch",
"pytorch_kinematics",
"mujoco",
]
ros = [
"rclpy",
]
inference = [
"torch",
"h5py",
"torchvision",
]
all = [
"dynamixel-sdk>=3.7.0",
"torch",
"pytorch_kinematics",
"rclpy",
"h5py",
"torchvision",
"depthai",
"open3d",
"opencv-python",
"mujoco",
"cv_bridge",
"drake",
"cvxopt",
"mujoco-python-viewer",
"mujoco",
"mediapipe",
]
[tool.setuptools]
package-dir = {faive_system = "."} # Tells setuptools that the package is in the current directory
packages = [
"faive_system",
"faive_system.src.hand_control",
"faive_system.src.logger",
"faive_system.src.ingress",
"faive_system.src.viz",
"faive_system.src.common",
]