forked from Farama-Foundation/HighwayEnv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 965 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
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': [],
},
)