-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 762 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 762 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
26
27
28
from setuptools import setup
with open("README.md", 'r') as f:
long_description = f.read()
setup(
name='consensus-module',
version='1.0',
description='A Python module to generate a consensual explanation in AI domains (XAI).',
license='GNU',
long_description=long_description,
author='Luana de Queiroz Garcia',
author_email='luanaqg@estudante.ufscar.br',
packages=['consensus_module'], #same as name
install_requires=['anchor_exp==0.0.2.0',
'img2pdf==0.5.1',
'ipython==8.27.0',
'joblib==1.4.2',
'kaleido==0.2.1',
'lime==0.2.0.1',
'matplotlib==3.9.2',
'numpy==1.26.4',
'pandas==2.2.2',
'plotly==5.24.1',
'scikit-learn==1.5.2',
'shap==0.46.0'
], #external packages as dependencies
)