-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (73 loc) · 2.07 KB
/
Copy pathpyproject.toml
File metadata and controls
83 lines (73 loc) · 2.07 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[project]
name = "detectmatelibrary"
description = "DetectMate Library for log processing components"
readme = {file = "README.md", content-type = "text/markdown"}
dynamic = ["version"]
authors = [{"name" = "André García Gómez"}, {"name" = "Viktor Beck"}, {"name" = "Thorina Boenke"},
{"name" = "Wolfgang Hotwagner"}, {"name" = "Anna Erdi"}, {"name" = "Ernst Leierzopf"}]
license = "EUPL-1.2"
requires-python = ">=3.12"
dependencies = [
"protobuf>=6.32.1",
"pydantic>=2.13.3",
"pyyaml>=6.0.3",
"regex>=2025.11.3",
"numpy>=2.3.2",
"detectmateperformance>=0.1.0",
"msgpack>=1.0.0",
"fsspec>=2024.1.0",
"pyarrow>=24.0.0",
]
[dependency-groups]
# install with all the dev dependencies: uv pip install --group dev
dev = [
"mike>=2.2.0",
"prek>=0.3.10",
"pytest>=8.4.2",
"pytest-cov>=6.2.1",
"detectmatelibrary[full]",
]
[project.optional-dependencies]
llm = [
"openai>=2.26.0",
"tenacity>=9.1.4",
"scipy>=1.17.1",
"scikit-learn>=1.8.0",
"tiktoken>=0.12.0",
"pandas>=2.3.2",
]
dataframes = [
"pandas>=2.3.2",
"polars>=1.40.1",
]
polars-rtcompat = [
"polars[rtcompat]>=1.38.1",
]
# install all optional extras at once: uv pip install detectmatelibrary[full]
full = [
"detectmatelibrary[llm]",
"detectmatelibrary[dataframes]",
"detectmatelibrary[polars-rtcompat]",
]
[tool.setuptools.dynamic]
version = {attr = "detectmatelibrary.metadata.__version__"}
[project.urls]
Homepage = "https://ait-detectmate.github.io/DetectMateLibrary/latest"
Repository = "https://github.com/ait-detectmate/DetectMateLibrary"
[build-system]
requires = ["setuptools>=82.0.1", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[project.scripts]
mate = "detectmatelibrary.tools.workspace.create_workspace:main"
[[tool.mypy.overrides]]
module = "detectmatelibrary.schemas.schemas_pb2"
ignore_errors = true
[tool.setuptools]
include-package-data = true
license-files = ["LICENSE.md"]
[tool.setuptools.package-data]
detectmatelibrary = [
"tools/workspace/templates/data/*.json"
]