-
Notifications
You must be signed in to change notification settings - Fork 57
/
setup.py
30 lines (26 loc) · 869 Bytes
/
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
import os
import setuptools
# 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()
# Installs
setuptools.setup(
name="tuplan-garage",
version="1.0.0",
author="CS_Tu @ University of Tuebingen",
author_email="[email protected]",
description="tuPlan Garage of the Autonomous Vision Group.",
url="https://github.com/autonomousvision/tuplan_garage",
python_requires=">=3.9",
packages=["tuplan_garage"],
package_dir={"": "."},
classifiers=[
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"License :: Free for non-commercial use",
],
license="apache-2.0",
install_requires=requirements,
)