-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
37 lines (34 loc) · 961 Bytes
/
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
from os.path import join, dirname, realpath
from setuptools import setup
import sys
assert sys.version_info.major == 3 and sys.version_info.minor >= 6, (
"The Fired Up repo is designed to work with Python 3.6 and greater."
+ "Please install it before proceeding."
)
with open(join("fireup", "version.py")) as version_file:
exec(version_file.read())
setup(
name="fireup",
py_modules=["fireup"],
version=__version__,
install_requires=[
"cloudpickle",
"gym[atari,box2d,classic_control]",
"ipython",
"joblib",
"matplotlib",
"mpi4py",
"numpy",
"pandas",
"pytest",
"psutil",
"scipy",
"seaborn",
"torch>=1.5.1",
"tqdm",
"wandb",
],
description="PyTorch clone of OpenAI's Spinning Up which is a teaching tools for introducing people to deep RL.",
author="Kashif Rasul, Joshua Achiam",
license="MIT",
)