-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (62 loc) · 1.73 KB
/
pyproject.toml
File metadata and controls
72 lines (62 loc) · 1.73 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
60
61
62
63
64
65
66
67
68
69
70
71
72
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "robot-keyframe-kit"
version = "0.2.1"
description = "A generalizable Viser-based keyframe editor for any MuJoCo robot"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{name = "Stanford TML", email = "yuming29@stanford.edu"}
]
maintainers = [
{name = "Stanford TML", email = "yuming29@stanford.edu"}
]
keywords = ["robotics", "mujoco", "keyframe", "animation", "viser", "motion-planning"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"mujoco>=3.3.4",
"mink==0.0.13",
"viser-keyframe==1.0.19",
"numpy",
"scipy",
"joblib",
"trimesh",
"lz4",
"pyyaml",
]
[project.optional-dependencies]
dev = [
"pytest",
"black",
"ruff",
]
[project.urls]
Homepage = "https://github.com/Stanford-TML/robot_keyframe_kit"
Repository = "https://github.com/Stanford-TML/robot_keyframe_kit"
[project.scripts]
keyframe-editor = "robot_keyframe_kit.editor:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
robot_keyframe_kit = ["py.typed"]
# Exclude examples and keyframes from the distribution
[tool.setuptools.exclude-package-data]
"*" = ["examples/*", "keyframes/*", "*.lz4", "*.stl", "*.dae"]
[tool.black]
line-length = 88
target-version = ["py310"]
[tool.ruff]
line-length = 88
select = ["E", "F", "I"]