Files
baselines/setup.py

29 lines
888 B
Python
Raw Permalink Normal View History

2017-05-17 14:41:46 -07:00
from setuptools import setup, find_packages
import sys
2017-05-17 14:41:46 -07:00
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))
2017-05-17 14:41:46 -07:00
2017-07-20 08:52:35 -07:00
2017-05-17 14:41:46 -07:00
setup(name='baselines',
packages=[package for package in find_packages()
if package.startswith('baselines')],
install_requires=[
2017-06-07 17:29:38 +08:00
'gym>=0.9.1[all]',
2017-05-17 14:41:46 -07:00
'scipy',
'tqdm',
'joblib',
'zmq',
'dill',
'tensorflow >= 1.0.0',
'azure==1.0.3',
'progressbar2',
2017-07-25 13:42:15 -07:00
'mpi4py',
2017-05-17 14:41:46 -07:00
],
description="OpenAI baselines: high quality implementations of reinforcement learning algorithms",
author="OpenAI",
url='https://github.com/openai/baselines',
author_email="gym@openai.com",
2017-07-12 14:48:00 -07:00
version="0.1.4")