forked from behzadanksu/rl-attack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 901 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
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='rlattack',
packages=[package for package in find_packages()
if package.startswith('rlattack')],
install_requires=[
'gym[mujoco,atari,classic_control]',
'scipy',
'tqdm',
'joblib',
'zmq',
'dill',
'tensorflow >= 1.0.0',
'azure==1.0.3',
'progressbar2',
'mpi4py',
],
description="RL-Attack - baselines for adversarial example attacks against DQN",
author="Vahid Behzadan",
url='https://github.com/behzadanksu/rl-attack',
author_email="[email protected]",
version="0.1.9")