forked from marcotcr/lime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·25 lines (24 loc) · 776 Bytes
/
setup.py
File metadata and controls
executable file
·25 lines (24 loc) · 776 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
from setuptools import setup, find_packages
setup(name='lime',
version='0.2.0.1',
description='Local Interpretable Model-Agnostic Explanations for machine learning classifiers',
url='http://github.com/marcotcr/lime',
author='Marco Tulio Ribeiro',
author_email='marcotcr@gmail.com',
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'
],
extras_require={
'dev': ['pytest', 'flake8'],
},
include_package_data=True,
zip_safe=False)