-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (53 loc) · 1.29 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (53 loc) · 1.29 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
[build-system]
requires = ["hatchling>=1.27,<2"]
build-backend = "hatchling.build"
[project]
name = "agent-control-plane"
version = "0.1.0"
description = "A reliability and governance control plane for production AI agents."
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
dependencies = [
"alembic>=1.16,<2",
"fastapi>=0.116,<1",
"httpx>=0.28,<1",
"psycopg[binary]>=3.2,<4",
"pydantic>=2.11,<3",
"sqlalchemy>=2.0,<3",
"uvicorn[standard]>=0.35,<1",
]
[project.optional-dependencies]
dev = [
"mypy>=1.17,<2",
"pip-audit>=2.9,<3",
"pytest>=9.0.3,<10",
"pytest-cov>=6.2,<8",
"ruff>=0.12,<1",
]
[project.scripts]
agent-control-plane = "agent_control_plane.__main__:main"
[tool.hatch.build.targets.wheel]
packages = ["src/agent_control_plane"]
[tool.pytest.ini_options]
addopts = "-ra --strict-markers"
testpaths = ["tests"]
markers = [
"integration: tests that require external infrastructure",
"smoke: fast end-to-end checks of the packaged service surface",
]
[tool.coverage.run]
branch = true
source = ["agent_control_plane"]
[tool.coverage.report]
fail_under = 90
show_missing = true
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["B", "E", "F", "I", "SIM", "UP"]
[tool.mypy]
python_version = "3.11"
strict = true
files = ["src"]