-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
40 lines (37 loc) · 1.03 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
34
35
36
37
38
39
40
import os
import sys
from setuptools import setup, find_packages
if sys.version_info.major != 3:
print("This Python is only compatible with Python 3, but you are running "
"Python {}. The installation will likely fail.".format(sys.version_info.major))
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='liv',
version='0.0.0',
packages=find_packages(),
description='LIV: Language-Image Representations and Rewards for Robotic Control',
long_description=read('README.md'),
author='Jason Ma',
install_requires=[
'torch<=1.13.1',
'torchvision>=0.8.2',
'omegaconf==2.1.1',
'hydra-core==1.1.1',
'pillow==9.0.1',
'opencv-python',
'matplotlib',
'flatten_dict',
'gdown',
'huggingface_hub',
'tabulate',
'pandas',
'scipy',
'scikit-learn',
'scikit-video',
'transforms3d',
'moviepy',
'termcolor',
'wandb'
]
)