-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (30 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
37 lines (30 loc) · 1.02 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
# Workspace root for the Koverage platform monorepo.
# Members are installed editable into one venv; `uv run pytest` covers them all.
[project]
name = "koverage-platform"
version = "0.0.0"
description = "Koverage: Beacon (LLM observability) + Underwriter (LLM evaluation) on a shared core"
requires-python = ">=3.11"
dependencies = ["llmcore", "llmobs", "beacon", "underwriter"]
[tool.uv]
package = false
[tool.uv.workspace]
members = ["core", "llmobs", "beacon", "underwriter"]
[tool.uv.sources]
llmcore = { workspace = true }
llmobs = { workspace = true }
beacon = { workspace = true }
underwriter = { workspace = true }
[dependency-groups]
dev = ["pytest>=8", "ruff>=0.6", "pyright>=1.1"]
[tool.pytest.ini_options]
testpaths = ["core/tests", "beacon/tests", "underwriter/tests"]
addopts = "-q"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.pyright]
include = ["core/llmcore", "llmobs/llmobs", "beacon/beacon", "underwriter/underwriter"]
pythonVersion = "3.11"
typeCheckingMode = "basic"
reportMissingImports = false