-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
97 lines (94 loc) · 1.82 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[build-system]
requires = ["setuptools >= 61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "robo_manip_baselines"
description = "Software that integrates various imitation learning methods and benchmark task environments to provide baselines for robot manipulation"
readme = "README.md"
authors = [
{name = "Masaki Murooka", email = "[email protected]"},
{name = "Tomohiro Motoda", email = "[email protected]"},
{name = "Ryoichi Nakajo", email = "[email protected]"},
]
maintainers = [
{name = "Masaki Murooka", email = "[email protected]"},
]
requires-python = ">= 3.8"
dependencies = [
"ipdb",
"ipython",
"gymnasium==1.0.0",
"mujoco==3.1.6",
"matplotlib>=3.3.4",
"imageio >=2.14.1",
"tqdm",
"numba",
"numpy",
"scipy>=1.7.0",
"opencv-python",
"pin",
"pyspacemouse",
]
dynamic = ["version"]
[project.optional-dependencies]
sarnn = [
"torch",
"torchvision",
"scikit-learn>=1.3.0",
"tensorboard",
"torchinfo",
"gdown",
]
act = [
"torch",
"torchvision",
"pyyaml",
"packaging",
"h5py",
"pyquaternion",
]
diffusion-policy = [
"torch",
"torchvision",
"cffi",
"zarr>=2.12.0",
"numcodecs",
"h5py",
"hydra-core",
"einops",
"dill",
"scikit-video>=1.1.11",
"scikit-image>=0.19.3",
"pymunk",
"wandb",
"threadpoolctl",
"cython",
"imageio-ffmpeg",
"termcolor",
"tensorboard>=2.10.1",
"tensorboardx>=2.5.1",
"psutil",
"click",
"pandas",
"diffusers==0.11.1",
"robomimic==0.2.0",
"huggingface_hub==0.21.4",
"urllib3<2",
]
real-ur5e = [
"ur_rtde",
"pyrealsense2",
]
real-xarm7 = [
"xArm-Python-SDK",
"pyrealsense2",
]
benchmarks = [
"ruamel.yaml",
"python-pptx",
"imageio[ffmpeg]",
"imageio[pyav]",
"ffmpeg-python",
]
[tool.setuptools.packages.find]
include = ["robo_manip_baselines", "robo_manip_baselines.*"]