-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (43 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
51 lines (43 loc) · 1.16 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
[project]
name = "telemetryflow-hermes"
version = "1.2.0"
description = "Self-improving AI agent integration for TelemetryFlow Observability Platform"
requires-python = ">=3.8"
license = "Apache-2.0"
[tool.setuptools]
py-modules = []
[tool.setuptools.packages.find]
include = ["plugins*"]
exclude = ["tests*", "logs*", "cron*", "hooks*", "skills*", "security*", "sessions*", "profiles*", "memories*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short --strict-markers"
markers = [
"unit: Unit tests (no external dependencies)",
"integration: Integration tests (require TFO Platform running)",
"slow: Slow tests",
]
[tool.coverage.run]
source = ["plugins/telemetryflow/tools"]
omit = [
"tests/*",
]
[tool.coverage.report]
fail_under = 95
show_missing = true
exclude_lines = [
"if __name__ == .__main__.:",
"pass",
"raise NotImplementedError",
]
[tool.ruff]
target-version = "py38"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "B", "A", "C4", "SIM"]
ignore = ["E501", "SIM105", "SIM117"]
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true