-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
33 lines (32 loc) · 1.2 KB
/
setup.py
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
from setuptools import setup
setup(
name="movement_primitive_diffusion",
version="0.0.1",
author="Paul Maria Scheikl, Nicolas Schreiber, Christoph Haas",
packages=["movement_primitive_diffusion"],
install_requires=[
"torch",
"torchvision", # For image transformations
"pytest",
"hydra-core",
"diffusers[torch]", # For EMA and discrete time noise schedulers
"wandb",
"robomimic", # For ResNet with SpatialSoftmax
"moviepy", # Saving videos with wandb
"imageio", # Saving videos with wandb
"pygame", # For PushT environment
"pymunk", # For PushT environment
"shapely", # For PushT environment
"scikit-image", # For PushT environment
"tabulate", # For pretty printing in memory_stats.py
"moviepy", # For saving videos
"GitPython", # For getting the repositories' root directory
"pybullet", # For obstacle avoidance environment
"gymnasium", # For common RL environment interface
"numpy<2.0.0",
"opencv-python",
"plotly", # For ObstacleAvoidance
"pandas", # For ObstacleAvoidance
],
python_requires=">=3.10",
)