-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
43 lines (36 loc) · 2.28 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
# -*- coding: utf-8 -*-
from setuptools import setup
packages = \
['pyexplainer']
package_data = \
{'': ['*'],
'pyexplainer': ['css/*',
'default_data/*',
'dev_info/*',
'js/*',
'rf_models/*']}
install_requires = ['python>=3.6',
'ipywidgets>=7.6.3,<8.0.0',
'scikit-learn>=0.24.2',
'numpy>=1.19.0',
'pandas>=1.1.0',
'scikit-learn>=0.24.2',
'scipy>=1.5.0',
'statsmodels>=0.12.2',
'ipython>=7.16.0']
setup_kwargs = {
'name': 'pyexplainer',
'version': '1.1.1',
'description': 'Explainable AI tool for Software Quality Assurance (SQA)',
'long_description': None,
'author': 'Michael',
'author_email': '[email protected]',
'maintainer': None,
'maintainer_email': None,
'url': None,
'packages': packages,
'package_data': package_data,
'install_requires': install_requires,
'python_requires': '>=3.8,<4.0',
}
setup(**setup_kwargs)