https://github.com/openai/baselines
Raw File
Tip revision: 0f8d64055453318eee1d875617c365cc43cb96d8 authored by Peter Zhokhov on 16 August 2018, 20:15:51 UTC
updated README files and deepq.train_cartpole example
Tip revision: 0f8d640
setup.py
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[mujoco,atari,classic_control,robotics]',
          'scipy',
          'tqdm',
          'joblib',
          'dill',
          'progressbar2',
          'mpi4py',
          'cloudpickle',
          'tensorflow>=1.4.0',
          'click',
          'opencv-python'
      ],
      extras_require={
        'test': [
            'filelock',
            'pytest'
        ]
      },
      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.5')
back to top