-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
63 lines (56 loc) · 1.41 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "simod"
version = "5.0.1"
authors = [
"Ihar Suvorau <ihar.suvorau@gmail.com>",
"David Chapela <david.chapela@ut.ee>",
"Manuel Camargo <manuel.camargo@ut.ee>",
]
description = "Simod is a Python tool for automated discovery of business process simulation models from event logs."
readme = "README.md"
packages = [{ include = "simod", from = "src" }]
[tool.poetry.dependencies]
python = "^3.9,<3.12"
click = "^8.1.3"
hyperopt = "^0.2.7"
lxml = "^5.3.0"
matplotlib = "^3.6.0"
networkx = "^3.2.1"
numpy = "^1.24.23"
pandas = "^2.1.0"
pendulum = "^3.0.0"
pydantic = "^2.3.0"
python-dotenv = "^1.0.0"
python-multipart = "^0.0.12"
pytz = "^2024.2"
PyYAML = "^6.0"
requests = "^2.28.2"
scipy = "^1.13.0"
statistics = "^1.0.3.5"
tqdm = "^4.64.1"
xmltodict = "^0.13.0"
prosimos = "^2.0.6"
extraneous-activity-delays = "^2.1.21"
openxes-cli-py = "^0.1.15"
pix-framework = "^0.13.17"
log-distance-measures = "^2.0.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.3"
pytest-cov = "^4"
memory-profiler = "^0.61.0"
pylint = "^2.17.4"
setuptools = "^67.8.0"
seaborn = "^0.12.2"
pytest-benchmark = "^4.0.0"
snakeviz = "^2.2.0"
[tool.poetry.scripts]
simod = "simod.cli:main"
[tool.ruff]
line-length = 120
[tool.black]
line-length = 120
[tool.pytest.ini_options]
markers = ["integration", "system", "manual", "benchmark", "smoke"]