-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathsetup.py
52 lines (49 loc) · 1.18 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
41
42
43
44
45
46
47
48
49
50
51
52
# Copyright (c) 2022-2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
# Licensed under the NVIDIA Source Code License [see LICENSE for details].
"""
Setup of RVT
Author: Ankit Goyal
"""
from setuptools import setup, find_packages
requirements = [
"numpy",
"scipy",
"einops",
"pyrender",
"transformers",
"omegaconf",
"natsort",
"cffi",
"pandas",
"tensorflow",
"pyquaternion",
"matplotlib",
"bitsandbytes==0.38.1",
"transforms3d",
"clip @ git+https://github.com/openai/CLIP.git",
]
__version__ = "0.0.1"
setup(
name="rvt",
version=__version__,
description="RVT",
long_description="",
author="Ankit Goyal",
author_email="[email protected]",
url="",
keywords="robotics,computer vision",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
],
packages=['rvt'],
install_requires=requirements,
extras_require={
"xformers": [
"xformers @ git+https://github.com/facebookresearch/xformers.git@main#egg=xformers",
]
},
)