-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 loc) · 997 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.21.5',
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>=0.16.0',
'docker-py==1.10.3',
'docker-pycreds==0.2.1',
'fastzbarlight>=0.0.13',
'go-vncdriver>=0.4.8',
'gym>=0.8.1',
'Pillow>=3.3.0',
'PyYAML>=3.12',
'six>=1.10.0',
'twisted>=16.5.0',
'ujson>=1.35',
],
package_data={'universe': ['runtimes.yml']},
tests_require=['pytest'],
extras_require={
'atari': 'gym[atari]',
}
)