forked from sled-group/RACER
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 685 Bytes
/
setup.py
File metadata and controls
34 lines (32 loc) · 685 Bytes
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
from setuptools import setup, find_packages
requirements = [
"numpy==1.24.3",
"click",
"scipy",
"einops",
"pyrender",
"transformers",
"omegaconf",
"natsort",
"cffi",
"pandas",
"tensorflow==2.13.1",
"pyquaternion",
"matplotlib",
"numpy-quaternion==2023.0.2",
"clip @ git+https://github.com/openai/CLIP.git",
"fastapi==0.111.0"
]
__version__ = "0.0.1"
setup(
name="racer",
version=__version__,
description="RACER",
long_description="",
author="Yinpei Dai",
author_email="daiypl@umich.edu",
url="",
keywords="robotics,language",
packages=['racer'],
install_requires=requirements,
)