forked from cleverhans-lab/cleverhans
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 687 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 687 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
from setuptools import find_packages
from setuptools import setup
setup(
name="cleverhans",
version="4.0.0",
url="https://github.com/cleverhans-lab/cleverhans",
license="MIT",
install_requires=[
"nose",
"pycodestyle",
"scipy",
"matplotlib",
"mnist",
"numpy",
"tensorflow-probability",
"joblib",
"easydict",
"absl-py",
"six",
],
extras_require={
"jax": ["jax>=0.2.9", "jaxlib"],
"tf": ["tensorflow>=2.4.0", "tensorflow-probability", "tensorflow-datasets"],
"pytorch": ["torch>=1.7.0", "torchvision>=0.8.0"],
},
packages=find_packages(),
)