forked from openai/spinningup
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 835 Bytes
/
setup.py
File metadata and controls
33 lines (30 loc) · 835 Bytes
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
from os.path import join
from setuptools import setup
import sys
assert sys.version_info.major == 3 and sys.version_info.minor >= 6, \
"Spinning Up requires Python 3.6+"
with open(join("spinup", "version.py")) as version_file:
exec(version_file.read())
setup(
name='spinup',
py_modules=['spinup'],
version=__version__,
install_requires=[
'cloudpickle==1.2.1',
'gym[box2d,classic_control]~=0.15.3',
'ipython',
'joblib',
'matplotlib>=3.5.3', # ✅ Replace 3.1.1 with M1-safe version
'mpi4py',
'numpy',
'pandas',
'pytest',
'psutil',
'scipy',
'seaborn==0.8.1',
'tqdm'
# ❌ 'atari-py' removed
],
description="Teaching tools for introducing people to deep RL.",
author="Joshua Achiam",
)