forked from signavio/bpmn2constraints
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (18 loc) · 768 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
"""Setup for running the bpmnconstraints script."""
import setuptools
with open("README.md", encoding="utf-8") as file:
long_description = file.read().strip()
setuptools.setup(
name="bpmnconstraints",
version="0.0.2",
description="Compiles BPMN models to SIGNAL queries and LTL constraints",
long_description=long_description,
author="Arvid Bergman, Timotheus Kampik, Adrian Rebmann",
author_email="timotheus.kampik@sap.com",
url="https://github.com/signavio/bpmn2constraints",
py_modules=["bpmnconstraints"],
entry_points={"console_scripts": ["bpmnconstraints=bpmnconstraints.script:run"]},
install_requires=["pylogics", "xmltodict"],
keywords="BPMN Conformance",
classifiers=["BPMN", "Conformance Checking"],
)