-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (56 loc) · 1.26 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (56 loc) · 1.26 KB
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
64
[build-system]
requires = ["setuptools>=69.0"]
build-backend = "setuptools.build_meta"
[project]
name = "algorithmic-process-mining"
version = "1.1.0"
description = "Algorithmic Process Mining and Conformance Checking for logistics (O2C / P2P cycles)"
license = "MIT"
requires-python = ">=3.11"
dependencies = [
"pm4py>=2.7.22,<3.0",
"pandas>=2.1,<3.0",
"numpy>=1.26,<2.0",
"networkx>=3.2,<4.0",
"graphviz>=0.20,<1.0",
"matplotlib>=3.7,<4.0",
"plotly>=5.18,<6.0",
"streamlit>=1.32,<2.0",
"pyarrow>=23.0.1,<25.0",
"scikit-learn>=1.3,<2.0",
"requests>=2.31,<3.0",
"pyyaml>=6.0,<7.0",
"python-dotenv>=1.0.1,<2.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=4.1",
"ruff>=0.3.0",
"mypy>=1.10.0",
"bandit>=1.7.7,<2.0",
]
test = [
"pytest>=8.0",
"pytest-cov>=4.1",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
filterwarnings = [
"ignore::UserWarning",
]
[tool.ruff]
line-length = 130
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP"]
[tool.mypy]
python_version = "3.12"
strict = true
ignore_missing_imports = true
[tool.coverage.run]
source = ["src"]
omit = ["tests/*"]
[tool.coverage.report]
show_missing = true