-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 977 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (35 loc) · 977 Bytes
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
[project]
name = "somehand"
version = "0.3.0"
description = "Universal dexterous hand retargeting based on MediaPipe and MuJoCo"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mujoco>=3.0.0",
"numpy>=1.24.0",
"scipy>=1.10.0",
"pyyaml>=6.0",
]
[project.optional-dependencies]
cli = [
"mediapipe>=0.10.0",
"opencv-python>=4.8.0",
"pico-bridge @ https://github.com/BotRunner64/pico-bridge/releases/download/v0.2.1/pico_bridge-0.2.1-py3-none-any.whl",
]
dev = [
"build>=1.0",
"mediapipe>=0.10.0",
"opencv-python>=4.8.0",
"pico-bridge @ https://github.com/BotRunner64/pico-bridge/releases/download/v0.2.1/pico_bridge-0.2.1-py3-none-any.whl",
"pytest>=7.0",
"ruff>=0.8.0",
]
[project.scripts]
somehand = "somehand.cli:main"
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]