-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
50 lines (46 loc) · 1.27 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
from setuptools import setup, find_packages # type: ignore
requirements = [
'argparse==1.4.0',
'numpy==1.22.2',
'matplotlib==3.5.1',
'pandas==1.4.1',
'pandasql==0.7.3',
'pm4py==2.2.19.1',
'psycopg2==2.9.3',
'psycopg2-binary==2.9.3',
'scikit-learn==1.0.2',
'scipy==1.8.0',
'SQLAlchemy==1.4.31',
'python-dotenv==0.19.2',
'pyyaml==6.0'
]
setup(
name='mimic-extraction',
version='0.1',
description='Extraction tool for event logs out of Mimic IV Data Sets',
url='https://github.com/bptlab/mimic-log-extraction',
author='Finn Klessascheck, Jonas Cremerius',
author_email='[email protected], [email protected]',
keywords='xes mimic event',
packages=find_packages(),
install_requires=requirements,
extras_require={
'dev': [
'typing_extensions==4.1.1',
'mypy==0.940',
'mypy-extensions==0.4.3',
'pandas-stubs==1.2.0.50',
'data-science-types==0.2.23',
'pylint==2.12.2',
'types-psycopg2==2.9.8',
'types-PyYAML==6.0.5'
]
},
include_package_data=True,
setup_requires=['wheel'],
entry_points={
'console_scripts': [
'extract_log = extract_log:main',
],
},
)