29 lines
504 B
TOML
29 lines
504 B
TOML
[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"]
|