forked from cleverhans-lab/cleverhans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (24 loc) · 747 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
from setuptools import find_packages
from setuptools import setup
setup(name='cleverhans',
version='3.0.1',
url='https://github.com/tensorflow/cleverhans',
license='MIT',
install_requires=[
'nose',
'pycodestyle',
'scipy',
'matplotlib',
"mnist ~= 0.2",
"numpy",
"tensorflow-probability",
"joblib",
],
# Explicit dependence on TensorFlow is not supported.
# See https://github.com/tensorflow/tensorflow/issues/7166
extras_require={
"tf": ["tensorflow>=1.0.0"],
"tf_gpu": ["tensorflow-gpu>=1.0.0"],
"pytorch": ["torch==0.4.0", "torchvision==0.2.1"],
},
packages=find_packages())