-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
36 lines (32 loc) · 922 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
import sys
from setuptools import find_packages, setup
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="remps",
packages=[package for package in find_packages() if package.startswith("remps")],
install_requires=[
"gym[classic_control]",
"scipy",
"tqdm",
"joblib",
"zmq",
"dill",
"progressbar2",
"mpi4py",
"cloudpickle",
"tensorflow>=1.4.0",
"click",
"opencv-python",
"numpy",
"tensorflow",
"theano",
],
description="Remps",
author="EmanueleGhelfi, Alberto Maria Metelli, Marcello Restelli",
author_email="albertomariameterlli@polimi.it, emanuele.ghelfi@mail.polimi.it",
version="0.0.1",
)