forked from openai/universe
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (27 loc) · 919 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
from setuptools import setup, find_packages
setup(name='universe',
version='0.20.2',
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='[email protected]',
packages=[package for package in find_packages()
if package.startswith('universe')],
install_requires=[
'autobahn',
'docker-py==1.10.3',
'fastzbarlight>=0.0.13',
'go-vncdriver>=0.4.8',
'gym>=0.5.2',
'Pillow',
'PyYAML',
'six',
'twisted',
'ujson',
],
package_data={'universe': ['runtimes.yml']},
tests_require=['pytest'],
extras_require={
'atari': 'gym[atari]',
}
)