-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (34 loc) · 903 Bytes
/
Copy pathsetup.py
File metadata and controls
35 lines (34 loc) · 903 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
29
30
31
32
33
34
35
from setuptools import setup
setup(
name='LRP_CMF_integration',
version='0.2',
packages=['src',
'src.log',
'src.encoding',
'src.labeling',
'src.evaluation',
'src.explanation',
'src.explanation.wrappers',
'src.explanation.confusion_matrix_feedback',
'src.predictive_model',
'src.hyperparameter_optimisation'],
install_requires=[
'pymining',
'logging',
'pandas',
'pm4py',
'functools',
'sklearn',
'shap',
'lime',
'numpy',
'enum',
'hyperopt'
'pathlib'
],
url='https://github.com/PDI-FBK/LRP_CMF_integration',
license='',
author=['Williams Rizzi', 'Please add your name here!'],
author_email='wrizzi@fbk.eu',
description='LRP CMF integration'
)