forked from alexus37/MasterThesisCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 709 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
setup(name='deepexplain',
version='0.3',
description='Perturbation and gradient-based methods for Deep Network interpretability',
url='https://github.com/marcoancona/DeepExplain',
author='Marco Ancona (ETH Zurich)',
author_email='marco.ancona@inf.ethz.ch',
license='MIT',
packages=find_packages(),
install_requires=[
'scipy',
'matplotlib',
'scikit-image'
],
extras_require={
"tf": ["tensorflow>=1.0.0"],
"tf_gpu": ["tensorflow-gpu>=1.0.0"],
},
zip_safe=False,
test_suite='nose.collector',
tests_require=['nose'],
)