Files
cli-autoreview/pyproject.toml
2026-02-02 19:54:04 +00:00

35 lines
595 B
TOML

[build-system]
requires = ["hatchling>=1.24.0"]
build-backend = "hatchling.build"
[project]
name = "ai-reviewer"
version = "0.1.0"
description = "Local-LLM Git diff reviewer using Ollama."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"typer>=0.12.0",
"pydantic>=2.7.0",
"httpx>=0.27.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"ruff>=0.6.0",
]
[project.scripts]
ai-reviewer = "ai_reviewer.cli:app"
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP"]
ignore = ["B008"]
[tool.pytest.ini_options]
addopts = "-q"