forked from jvmncs/ai-safety-gridworlds
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
70 lines (65 loc) · 2.31 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
66
67
68
69
70
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import sys
try:
import setuptools
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
import setuptools
if sys.version_info[0] == 2:
enum = ["enum34"]
elif sys.version_info[0] == 3:
enum = []
setuptools.setup(
name="ai-safety-gridworlds",
version="1.5",
description="A suite of reinforcement learning environments illustrating "
"various safety properties of intelligent agents.",
long_description=(
"This is a suite of reinforcement learning environments illustrating "
"various safety properties of intelligent agents. These environments "
"are implemented in pycolab, a highly-customisable gridworld game "
"engine with some batteries included."
),
url="https://github.com/jvmancuso/ai-safety-gridworlds/",
author="DeepMind Technologies",
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 :: 2.7",
"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 "
"ascii art "
"game engine "
"gridworld "
"reinforcement learning "
"retro retrogaming"
),
install_requires=["pycolab", "numpy", "absl-py"] + enum,
packages=setuptools.find_packages(),
zip_safe=True,
entry_points={},
test_suite="ai_safety_gridworlds.tests",
tests_require=["tensorflow"],
)