26 lines
692 B
Python
26 lines
692 B
Python
from setuptools import setup, find_packages
|
|
import os
|
|
|
|
|
|
repo_dir = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
|
|
setup(name='baselines',
|
|
packages=[package for package in find_packages()
|
|
if package.startswith('baselines')],
|
|
install_requires=[
|
|
'scipy',
|
|
'tqdm',
|
|
'joblib',
|
|
'zmq',
|
|
'dill',
|
|
'tensorflow >= 1.0.0',
|
|
'azure==1.0.3',
|
|
'progressbar2',
|
|
],
|
|
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.0")
|