forked from SeldonIO/alibi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (50 loc) · 1.38 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from setuptools import find_packages, setup
def readme():
with open('README.md') as f:
return f.read()
# read version file
exec(open('alibi/version.py').read())
extras_require = {
'examples': ['seaborn', 'xgboost']
}
setup(name='alibi',
author='Seldon Technologies Ltd.',
author_email='[email protected]',
version=__version__, # type: ignore # noqa F821
description='Algorithms for monitoring and explaining machine learning models',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/SeldonIO/alibi',
license='Apache 2.0',
packages=find_packages(),
include_package_data=True,
python_requires='>=3.6,<3.8',
setup_requires=[
'pytest-runner'
],
install_requires=[
'attrs',
'beautifulsoup4',
'matplotlib',
'numpy',
'Pillow',
'pandas',
'prettyprinter',
'requests',
'scikit-learn',
'spacy[lookups]',
'scikit-image<0.17',
'tensorflow<2.0',
'shap',
'scipy',
'typing-extensions>=3.7.2'
],
tests_require=[
'pytest',
'pytest-cov',
'pytest-xdist',
'pytest-lazy-fixture',
],
extras_require=extras_require,
test_suite='tests',
zip_safe=False)