forked from openai/gym
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 1.37 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
from setuptools import setup, find_packages
import sys, os.path
# Don't import gym module here, since deps may not be installed
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'gym'))
from version import VERSION
setup(name='gym',
version=VERSION,
description='The OpenAI Gym: A toolkit for developing and comparing your reinforcement learning agents.',
url='https://github.com/openai/gym',
author='OpenAI',
author_email='[email protected]',
license='',
packages=[package for package in find_packages()
if package.startswith('gym')],
zip_safe=False,
install_requires=[
'numpy>=1.10.4', 'requests>=2.0', 'six', 'pyglet',
],
extras_require={
'all': ['atari_py>=0.0.17', 'Pillow', 'PyOpenGL',
'pachi-py>=0.0.19',
'box2d-py',
'mujoco_py>=0.4.3', 'imageio'],
# Environment-specific dependencies. Keep these in sync with
# 'all'!
'atari': ['atari_py>=0.0.17', 'Pillow', 'pyglet', 'PyOpenGL'],
'board_game' : ['pachi-py>=0.0.19'],
'box2d': ['box2d-py'],
'classic_control': ['PyOpenGL'],
'mujoco': ['mujoco_py>=0.4.3', 'imageio'],
},
package_data={'gym': ['envs/mujoco/assets/*.xml', 'envs/classic_control/assets/*.png']},
tests_require=['nose2', 'mock'],
)