forked from meng2180/CooTest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (23 loc) · 829 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
# -*- coding: utf-8 -*-
# Author: Runsheng Xu <[email protected]>
# License: TDG-Attribution-NonCommercial-NoDistrib
from os.path import dirname, realpath
from setuptools import setup, find_packages
from opencood.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='V2V4Real',
version=__version__,
packages=find_packages(),
url='https://github.com/ucla-mobility/V2V4Real',
license='MIT',
author='Runsheng Xu',
author_email='[email protected]',
description='v2v4real codebase',
long_description=open("README.md").read(),
install_requires=_read_requirements_file(),
)