auto-commit-service/pyproject.toml

46 lines
973 B
TOML
Raw Normal View History

[project]
name = "auto-commit-service"
version = "0.2.7"
description = "Automated commit message generation service using local LLM inference"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"lilith-fastapi-service-base>=2.1.0",
"lilith-auto-commit-pipeline>=0.1.0",
"lilith-pipeline-framework>=1.0.0",
"httpx>=0.27.0",
"pydantic>=2.0",
"pyyaml>=6.0",
"uvicorn>=0.30.0",
"typer>=0.12.0",
"sqlalchemy[asyncio]>=2.0.0",
"aiosqlite>=0.19.0",
]
[project.scripts]
commits = "auto_commit_service.cli:main"
[project.optional-dependencies]
2026-01-05 15:24:28 -08:00
model-boss = [
"lilith-model-boss>=0.1.0",
]
tray = [
"rumps>=0.4.0",
]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-httpx>=0.30",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/auto_commit_service"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]