Initial commit
This commit is contained in:
25
setup.py
Normal file
25
setup.py
Normal file
@@ -0,0 +1,25 @@
|
||||
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")
|
Reference in New Issue
Block a user