forked from AI4LIFE-GROUP/OpenXAI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 780 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
from setuptools import setup, find_packages
install_requires = [
'captum>=0.4.0',
'torch==1.11.0',
'torchray>=1.0.0.2',
'torchvision>=0.8.0',
'numpy>=1.19.5',
'matplotlib>=3.3.4',
'lime>=0.2.0.1',
'shap>=0.40.0',
'pandas>=1.3.5',
'tqdm>=4.62.3',
'requests>=2.16.0',
'scipy>=1.6.0',
'scikit-learn>=0.24.1',
'jupyterlab>=3.5.2',
'IProgress>=0.4'
]
setup(name='openxai',
version='0.1',
description='A general-purpose lightweight library that provides a comprehensive list of functions to systematically benchmark explanations generated by attribute-based explanation methods.',
packages=find_packages(),
install_requires=install_requires,
zip_safe=False)