-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·51 lines (41 loc) · 1.57 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python3
# flake8: noqa
"""Setup script for the Flow repository."""
from os.path import dirname, realpath
from setuptools import find_packages, setup, Distribution
import setuptools.command.build_ext as _build_ext
import subprocess
from flow.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]
class build_ext(_build_ext.build_ext):
"""External buid commands."""
def run(self):
"""Install traci wheels."""
subprocess.check_call(
['python3','-m','pip', 'install',
'https://akreidieh.s3.amazonaws.com/sumo/flow-0.4.0/'
'sumotools-0.4.0-py3-none-any.whl'])
class BinaryDistribution(Distribution):
"""See parent class."""
def has_ext_modules(self):
"""Return True for external modules."""
return True
setup(
name='flow',
version=__version__,
distclass=BinaryDistribution,
cmdclass={"build_ext": build_ext},
packages=find_packages(),
description=("A system for applying deep reinforcement learning and "
"control to autonomous vehicles and traffic infrastructure"),
long_description=open("README.md").read(),
url="https://github.com/flow-project/flow",
keywords=("autonomous vehicles intelligent-traffic-control"
"reinforcement-learning deep-learning python"),
install_requires=_read_requirements_file(),
zip_safe=False,
)