forked from david-lindner/safe-grid-gym
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
65 lines (63 loc) · 2.23 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
try:
import setuptools
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
import setuptools
setuptools.setup(
name="safe-grid-gym",
version="0.1",
description="A gym interface for AI safety gridworlds created in pycolab.",
long_description=(
"Provides an OpenAI Gym interface for the AI safety gridworlds created "
"by DeepMind. This allows to train reinforcement learning agents that "
"use the OpenAI Gym interfece on the gridworld environments."
),
url="https://github.com/david-lindner/safe-grid-gym/",
author="David Lindner",
author_email="[email protected]",
license="Apache 2.0",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Console :: Curses",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Games/Entertainment :: Arcade",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Testing",
],
keywords=(
"ai "
"artificial intelligence "
"gridworld "
"gym "
"rl "
"reinforcement learning "
),
install_requires=[
"gym>=0.12",
"ai-safety-gridworlds @ https://github.com/timorl/ai-safety-gridworlds/tarball/master#egg=ai-safety-gridworlds-1.5",
"numpy",
"pillow",
"matplotlib",
],
dependency_links=[
"https://github.com/timorl/ai-safety-gridworlds/tarball/master#egg=ai-safety-gridworlds-1.5"
],
packages=setuptools.find_packages(),
zip_safe=True,
entry_points={},
test_suite="safe_grid_gym.tests",
package_data={"safe_grid_gym.envs.common": ["*.ttf"]},
)