forked from dexsuite/dex-retargeting
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
59 lines (53 loc) · 1.46 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "dex_retargeting"
version = "0.5.0"
description = "Hand pose retargeting for dexterous robot hand."
authors = [{ name = "Yuzhe Qin", email = "y1qin@ucsd.edu" }]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.7,<3.13"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
urls = { "Homepage" = "https://github.com/dexsuite/dex-retargeting" }
dependencies = [
"numpy>=2.0.0",
"pytransform3d>=3.5.0",
"pin>=3.3.1",
"nlopt>=2.8.0",
"anytree>=2.12.0",
"pyyaml>=6.0.0",
"lxml>=5.2.2",
]
[project.optional-dependencies]
dev = ["pytest", "ruff", "isort"]
example = [
"tyro",
"tqdm",
"opencv-python",
"mediapipe",
"sapien==3.0.0b0",
"loguru",
]
[tool.ruff.lint.isort]
combine-as-imports = true
known-first-party = ["dex_retargeting"]
split-on-trailing-comma = false
[tool.ruff]
line-length = 88
[tool.pytest.ini_options]
addopts = "--disable-warnings"
testpaths = ["tests"]