-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
21 lines (19 loc) · 912 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import setuptools
#with open("README.md", "r") as fh:
# long_description = fh.read()
setuptools.setup(
name="conformancechecking4spark",
version="0.3.0",
author="Alvaro Valencia-Parra",
author_email="alvarovalenciavp@gmail.com",
description="A library for performing conformance checking on large event logs and complex PNML models in a "
"distributed environment by using pm4py and Apache Spark.",
long_description_content_type="text/markdown",
url="https://github.com/IDEA-Research-Group/conformancechecking4spark",
download_url="https://github.com/IDEA-Research-Group/conformancechecking4spark/tarball/0.1",
classifiers=[],
keywords=["conformancecheking", "pm4py", "conformance checking", "process mining", "apache spark", "spark",
"distributed process mining"],
python_requires='>=3.7',
packages=setuptools.find_packages()
)