-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
26 lines (25 loc) · 961 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
setup(name='xwhy',
version='0.0.0.1',
description='Explain Why (XWhy) with Statistical Model-agnostic Interpretability with Local Explanations (SMILE)',
url='https://github.com/Dependable-Intelligent-Systems-Lab/xwhy',
author='Mojgan Hashemian, Koorosh Aslansefat (corresponding), Mohammad Naveed Akram, Ioannis Sorokos, Martin Walker, Yiannis Papadopoulos',
author_email='[email protected]',
license='BSD',
packages=find_packages(exclude=['js', 'node_modules', 'tests']),
python_requires='>=3.5',
install_requires=[
'matplotlib',
'numpy',
'scipy',
'tqdm >= 4.29.1',
'scikit-learn>=0.18',
'scikit-image>=0.12',
'pyDOE2==1.3.0',
'twine==1.13.0'
],
extras_require={
'dev': ['pytest', 'flake8'],
},
include_package_data=True,
zip_safe=False)