-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 1016 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
29
30
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='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Researchers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.7',
],
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': [],
},
)