1 Star 1 Fork 2

dx2919717227/highway-env

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 965 Bytes
一键复制 编辑 原始数据 按行查看 历史
Edouard Leurent 提交于 2020-04-19 19:08 +08:00 . Drop Python 2.7 support
from setuptools import setup, find_packages
setup(
name='highway-env',
version='1.0.dev0',
description='An environment for simulated highway driving tasks',
url='https://github.com/eleurent/highway-env',
author='Edouard Leurent',
author_email='eleurent@gmail.com',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Researchers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
keywords='autonomous highway driving simulation environment reinforcement learning',
packages=find_packages(exclude=['docs', 'scripts', 'tests']),
install_requires=['gym', 'numpy', 'pygame', 'matplotlib', 'pandas'],
tests_require=['pytest'],
extras_require={
'dev': ['scipy'],
'deploy': ['pytest-runner', 'sphinx<1.7.3', 'sphinx_rtd_theme']
},
entry_points={
'console_scripts': [],
},
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/paperslice/highway-env.git
git@gitee.com:paperslice/highway-env.git
paperslice
highway-env
highway-env
master

搜索帮助