first commit

This commit is contained in:
Stéphane Tailland
2026-04-26 15:15:50 +02:00
commit 2f142e9d33
17 changed files with 1389 additions and 0 deletions
+43
View File
@@ -0,0 +1,43 @@
[project]
name = "backlog-agent"
version = "0.1.0"
requires-python = ">=3.12,<3.13"
dependencies = [
"pydantic-ai-slim[ag-ui,openai]>=1.87",
"fastapi>=0.136",
"uvicorn[standard]>=0.46",
"httpx>=0.28.1",
"google-auth>=2.49",
"hvac>=2.4",
"pydantic-settings>=2.14",
"python-jose[cryptography]>=3.5",
]
[dependency-groups]
dev = [
"pytest>=9.0",
"pytest-asyncio>=1.3",
"ruff>=0.15",
"pyright>=1.1.409",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/backlog_agent"]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.pyright]
pythonVersion = "3.12"
venvPath = "."
venv = ".venv"
[tool.pytest.ini_options]
asyncio_mode = "auto"