-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 1.06 KB
/
Copy pathpyproject.toml
File metadata and controls
36 lines (32 loc) · 1.06 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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "hand-tracking-control"
version = "1.0.0"
description = "Real-time teleoperation of MuJoCo robots (Shadow Hand, Crazyflie drone) from a webcam using MediaPipe hand tracking."
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [{ name = "Manas Arumalla" }]
keywords = ["robotics", "computer-vision", "mediapipe", "mujoco", "hand-tracking", "teleoperation"]
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Scientific/Engineering :: Robotics",
]
dependencies = [
"mediapipe>=0.10.9",
"opencv-python>=4.8",
"mujoco>=3.1",
"numpy>=1.24",
"glfw>=2.6",
]
[project.urls]
Repository = "https://github.com/Manas-arumalla/Hand-Tracking-Control"
[project.scripts]
shadow-hand-demo = "handctrl.shadow_hand_demo:main"
drone-demo = "handctrl.drone_demo:main"
finger-counter = "handctrl.finger_counter:main"
[tool.setuptools.packages.find]
where = ["src"]