Files
baselines/setup.py
Matthias Plappert 13c4107264 Export param noise
2017-07-25 13:42:54 -07:00

29 lines
888 B
Python

from setuptools import setup, find_packages
import sys
if sys.version_info.major != 3:
print("This Python is only compatible with Python 3, but you are running "
"Python {}. The installation will likely fail.".format(sys.version_info.major))
setup(name='baselines',
packages=[package for package in find_packages()
if package.startswith('baselines')],
install_requires=[
'gym>=0.9.1[all]',
'scipy',
'tqdm',
'joblib',
'zmq',
'dill',
'tensorflow >= 1.0.0',
'azure==1.0.3',
'progressbar2',
'mpi4py',
],
description="OpenAI baselines: high quality implementations of reinforcement learning algorithms",
author="OpenAI",
url='https://github.com/openai/baselines',
author_email="gym@openai.com",
version="0.1.4")