-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 860 Bytes
/
setup.py
File metadata and controls
30 lines (29 loc) · 860 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
from setuptools import setup, find_packages
setup(name='sp_model_discoverer',
version='1.0.0',
description='stochastic process model discoverer',
author='Manuel Camargo',
url='https://github.com/AdaptiveBProcess/StochasticProcessModelDiscoverer',
package_dir={"": "src"},
packages=find_packages(where='src'),
install_requires=[
'pandas==1.5.3',
'networkx==3.0',
'numpy==1.24.2',
'scikit-learn==1.2.2',
'hyperopt==0.2.5',
'jellyfish==0.9.0',
'opyenxes==0.3.0',
'pm4py==2.6.1',
'gensim==4.3.1',
'fitter==1.5.2',
'pyyaml==6.0',
'click~=8.1.3',
'lxml~=4.9.2',
'tqdm~=4.65.0'],
entry_points={
'console_scripts': [
'spmd = pipeline:main',
]
}
)