Files
gitea-codex/pyproject.toml
Space-Banane d8956b309d
Some checks failed
ci / test (push) Failing after 12s
ci / publish (push) Has been skipped
First MVP
2026-05-22 19:25:57 +02:00

43 lines
872 B
TOML

[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gitea-codex-bot"
version = "0.1.0"
description = "Webhook-driven Codex review bot for Gitea"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0",
"sqlalchemy>=2.0.30",
"alembic>=1.13.2",
"pymysql>=1.1.1",
"httpx>=0.27.0",
"pydantic>=2.7.0",
"pydantic-settings>=2.3.0",
"python-dotenv>=1.0.1",
"pyyaml>=6.0.2",
]
[project.optional-dependencies]
dev = [
"pytest>=8.2.0",
"pytest-asyncio>=0.23.7",
"pytest-cov>=5.0.0",
]
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]
markers = [
"no_schema: skip automatic schema setup fixture for migration-focused tests",
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]