-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
30 lines (28 loc) · 1.04 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
# setup.py
import os
from setuptools import setup, find_packages
def read_requirements_file(filename):
req_file_path = os.path.join(os.path.dirname(os.path.realpath(__file__)),
filename)
with open(req_file_path) as f:
return [line.strip() for line in f]
setup(
name='roar_py_rl',
version='0.0.1a',
description="ROAR Team's RL Training Repo based on ROAR_PY",
url="https://github.com/FHL-VIVE-Center-For-Enhanced-Reality/ROAR_PY_RL",
classifiers=[
"Programming Language :: Python :: 3",
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
author="Yunhao Cao",
keywords=["reinforcement learning", "gymnasium", "carla"],
license="MIT",
install_requires=read_requirements_file("requirements.txt"),
packages=find_packages(),
python_requires='>=3.8',
)