-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (21 loc) · 844 Bytes
/
setup.py
File metadata and controls
25 lines (21 loc) · 844 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
from os.path import dirname, realpath
from setuptools import setup, find_packages, Distribution
from EIdrive.version import __version__
def _read_requirements_file():
"""Return the elements in requirements.txt."""
req_file_path = '%s/requirements.txt' % dirname(realpath(__file__))
with open(req_file_path) as f:
return [line.strip() for line in f]
setup(
name='EI-Drive',
version=__version__,
packages=find_packages(),
url='https://github.com/ucd-dare/EI-Drive.git',
license='MIT',
author='todo',
author_email='todo',
description='A framework for fast developing cooperative driving automation and autonomous '
'vehicle modules in multi-resolution simulation environment"',
long_description=open("README.md").read(),
install_requires=_read_requirements_file(),
)