forked from openai/baselines
-
Notifications
You must be signed in to change notification settings - Fork 725
/
setup.py
41 lines (37 loc) · 1.23 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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='stable_baselines',
packages=[package for package in find_packages()
if package.startswith('stable_baselines')],
install_requires=[
'gym[mujoco,atari,classic_control,robotics]',
'scipy',
'tqdm',
'joblib',
'zmq',
'dill',
'progressbar2',
'mpi4py',
'cloudpickle',
'tensorflow>=1.5.0',
'click',
'opencv-python',
'numpy',
'pandas',
'pytest',
'matplotlib',
'seaborn',
'glob2'
],
description='A fork of OpenAI Baselines, implementations of reinforcement learning algorithms.',
author='Ashley Hill',
url='https://github.com/openai/stable_baselines',
author_email='[email protected]',
version='1.0.1')
# python setup.py sdist
# python setup.py bdist_wheel
# twine upload --repository-url https://test.pypi.org/legacy/ dist/*
# twine upload dist/*