代码拉取完成,页面将自动刷新
#!/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(
['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,
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。