-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
30 lines (28 loc) · 1.07 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
__doc__ = """Wrapper for OpenAI Retro Gym to allow multiple processes."""
from setuptools import setup
setup(
name="retrowrapper",
version="0.3.0",
author="Max Strange",
author_email="[email protected]",
description="Wrapper for OpenAI Retro Gym environments to allow multiple processes.",
install_requires=["gym-retro"],
license="MIT",
keywords="reinforcement-learning retro ai rl dl deep-learning gym openai",
url="https://github.com/MaxStrange/retrowrapper",
py_modules=["retrowrapper"],
python_requires="~=3.4",
long_description=__doc__,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
]
)