-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
35 lines (33 loc) · 793 Bytes
/
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
34
35
from setuptools import setup
setup(name="equibot",
version="0.1",
description="",
author="",
author_email="",
license="",
packages=[],
install_requires=[
"click",
"matplotlib",
"scipy",
"tqdm",
"opencv-python==4.9.0.80",
"opencv-python-headless==4.9.0.80",
"opencv-contrib-python==4.7.0.72",
"hydra-core",
"wandb",
"chardet",
"trimesh[all]",
"natsort",
"ffmpeg",
"imageio[ffmpeg]",
"ipykernel",
"robosuite",
"gtimer",
"scikit-video",
"einops",
"diffusers",
"gym==0.26.2",
"pybullet==3.2.6",
"protobuf==3.20.0"
])