-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
56 lines (54 loc) · 1.75 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
try:
import setuptools
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
import setuptools
setuptools.setup(
name="safe-grid-agents",
version="0.1.0dev",
description="Training (hopefully) safe agents in gridworlds.",
long_description=open("README.md").read(),
url="https://github.com/jvmancuso/safe-grid-agents/",
author="Jason Mancuso",
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.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=[
"safe-grid-gym @ git+https://github.com/david-lindner/safe-grid-gym.git",
"pyyaml>=5.1",
"moviepy",
"tensorboardX<=1.5",
"ray",
],
packages=setuptools.find_packages(),
zip_safe=True,
entry_points={},
# test_suite="safe_grid_agents.tests",
)