-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 1.05 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
[project]
name = "detectmatelibrary"
version = "0.2.0"
description = "DetectMate Library for log processing components"
readme = "README.md"
dynamic = ["authors"]
requires-python = ">=3.12"
dependencies = [
"protobuf>=6.32.1",
"pydantic>=2.11.7",
"pyyaml>=6.0.3",
"regex>=2025.11.3",
"kafka-python>=2.3.0",
"openai>=2.26.0",
"tenacity>=9.1.4",
"scipy>=1.17.1",
"scikit-learn>=1.8.0",
"tiktoken>=0.12.0",
"numpy>=2.3.2",
"pandas>=2.3.2",
"polars>=1.38.1",
]
[dependency-groups]
# add dependencies in this section with: uv add --optional dev <package>
# install with all the dev dependencies: uv pip install -e .[dev]
dev = [
"mike>=2.1.3",
"prek>=0.2.8",
"pytest>=8.4.2",
"pytest-cov>=6.2.1",
]
[build-system]
requires = ["setuptools>=45.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[project.scripts]
mate = "tools.workspace.create_workspace:main"
[[tool.mypy.overrides]]
module = "detectmatelibrary.schemas.schemas_pb2"
ignore_errors = true