-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 918 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 918 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
import os
from setuptools import setup, find_packages
# Change directory to allow installation from anywhere
script_folder = os.path.dirname(os.path.realpath(__file__))
os.chdir(script_folder)
with open("requirements.txt") as f:
requirements = f.read().splitlines()
setup(
name="AutoVLA",
version="1.0.0",
author="Zewei Zhou, Tianhui Cai, Seth Z. Zhao, Yun Zhang, Zhiyu Huang, Bolei Zhou, Jiaqi Ma",
description="AutoVLA: A Vision-Language-Action Model for End-to-End Autonomous Driving with Adaptive Reasoning and Reinforcement Fine-Tuning",
url="https://github.com/ucla-mobility/AutoVLA",
packages=find_packages(where=script_folder),
package_dir={"": "."},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.9",
license="Academic-Software-License",
install_requires=requirements,
)