-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (30 loc) · 870 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
32
33
34
35
36
[build-system]
requires = ["maturin>=1.7,<2.0", "setuptools"]
build-backend = "maturin"
[tool.maturin]
python-source = "python"
[tool.pyright]
venvPath = "."
venv = ".venv"
[tool.poetry]
name = "imtd"
version = "0.1.0"
description = "Discoviering process model utilizing desirable and undesirable traces"
authors = ["Xudong Zhu"]
readme = "README.md"
packages = [{ include = "imtd", from = "python" }]
[tool.poetry.dependencies]
python = ">=3.10"
pm4py = "=2.5.2"
tqdm = "^4.66.5"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
mypy = "^1.11.1"
[tool.poetry.scripts]
discover = "scripts.main:main"
split_data = "scripts.split_data:main"
calculate_distance = "scripts.calculate_distance:main"
generate_event_log = "scripts.generate_event_log:main"
experiment = "scripts.experiment:main"
experiment_1 = "scripts.experiment_1:main"
plot = "scripts.plot:main"