-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
46 lines (39 loc) · 1.03 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 = "DetectMateService"
description = "A modular framework for building log processing and anomaly detection services."
readme = "README.md"
requires-python = ">=3.12"
dynamic = ["version"]
dependencies = [
"detectmatelibrary @ git+https://github.com/ait-detectmate/DetectMateLibrary.git",
"pathlib>=1.0.1",
"pydantic>=2.11.7",
"pydantic-settings>=2.10.1",
"pynng>=0.8.1",
"pyyaml>=6.0.2",
"types-pyyaml>=6.0.12.20250915",
"requests>=2.31.0",
"prometheus-client>=0.20.0",
"uvicorn[standard]>=0.34.0",
"fastapi>=0.115.0",
"httpx>=0.28.1",
]
[dependency-groups]
dev = [
"mike>=2.1.3",
"prek>=0.2.8",
"pytest>=8.4.1",
"pytest-cov>=6.2.1",
"types-requests",
]
[project.scripts]
detectmate = "service.cli:main"
detectmate-client = "service.client:main"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
namespaces = true
where = ["src"]
[tool.setuptools.dynamic]
version = {attr = "service.metadata.__version__"}