forked from BioroboticsLab/IBA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (40 loc) · 1.17 KB
/
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
37
38
39
40
41
42
import setuptools
setuptools.setup(
name="iba",
url="https://github.com/BioroboticsLab/IBA",
version="0.0.1",
author="Karl Schulz, Leon Sixt",
author_email="[email protected], [email protected]",
license='MIT',
description="Information Bottlenecks for Attribution (IBA)",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
install_requires=['numpy', 'scikit-image', 'tqdm', 'Pillow<7.0.0'],
extras_require={
'dev': [
'pytest',
'pytest-pep8',
'pytest-cov',
'pytest-readme',
'sphinx',
'sphinx_rtd_theme',
'sphinx-autobuild',
],
'torch': [
'torch>=1.1.0',
'torchvision>=0.3.0',
],
'tensorflow-v1': [
'tensorflow>=1.12.0, <2.0',
'tensorflow-probability<=0.7.0',
'keras<2.3.0',
],
'tensorflow-gpu': [
'tensorflow-gpu>=1.12.0, <2.0'
'keras<2.3.0',
],
},
python_requires='>=3.6',
keywords=['Deep Learning', 'Attribution', 'XAI'],
)