chore: scaffold agent manager project

This commit is contained in:
2026-05-06 15:24:41 +08:00
commit e39c63f661
9 changed files with 630 additions and 0 deletions

28
pyproject.toml Normal file
View File

@@ -0,0 +1,28 @@
[project]
name = "agent-gitea"
version = "0.1.0"
description = "CLI-first agentic Gitea issue-to-PR manager"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"httpx>=0.27",
"pydantic>=2.7",
"pyyaml>=6.0",
"typer>=0.12",
]
[project.scripts]
agent-gitea = "agent_gitea.cli:app"
[dependency-groups]
dev = [
"pytest>=8.2",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]