forked from pandamarty/declare4py-v2.0
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
31 lines (30 loc) · 894 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "declare4py"
description = "Python library to perform discovery, conformance checking and query checking of DECLARE constraints."
readme = "README.md"
requires-python = ">=3.9.7"
keywords = [
"python", "bpm", "declare", "process-mining",
"rule-mining", "business-process-management",
"declarative-process-models"
]
#license = {text = "GPL"}
authors = [
{ name = "Ivan Donadello", email = "ivan.donadello@unibz.it" },
{ name = "Francesco Riva", email = "francesco.riva@unibz.it" },
{ name = "Fabrizio Maria Maggi", email = "maggi@inf.unibz.it" }
]
dependencies = [
"logaut",
"packaging",
"mlxtend >= 0.20.0",
"pm4py >= 2.5.1",
"clingo >= 5.6.2",
"boolean.py",
"pandas >= 1.3.4",
"ltlf2dfa ==1.0.2"
]
dynamic = ["version"]