forked from openai/universe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 loc) · 954 Bytes
/
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
from setuptools import setup, find_packages
setup(name='universe',
version='0.20.4',
description="Universe: a software platform for measuring and training an AI's general intelligence across the world's supply of games, websites and other applications.",
url='https://github.com/openai/universe',
author='OpenAI',
author_email='universe@openai.com',
packages=[package for package in find_packages()
if package.startswith('universe')],
install_requires=[
'autobahn',
'docker-py==1.10.3',
'docker-pycreds==0.2.1',
'fastzbarlight>=0.0.13',
'go-vncdriver>=0.4.8',
'gym>=0.5.7',
'Pillow',
'PyYAML',
'six',
'twisted',
'ujson',
],
package_data={'universe': ['runtimes.yml']},
tests_require=['pytest'],
extras_require={
'atari': 'gym[atari]',
}
)