2026-01-04 21:50:37 -08:00
|
|
|
[project]
|
|
|
|
|
name = "auto-commit-service"
|
2026-04-17 23:23:07 -07:00
|
|
|
version = "0.2.7"
|
2026-01-04 21:50:37 -08:00
|
|
|
description = "Automated commit message generation service using local LLM inference"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
requires-python = ">=3.11"
|
|
|
|
|
dependencies = [
|
2026-01-14 10:48:13 -08:00
|
|
|
"lilith-fastapi-service-base>=2.1.0",
|
2026-01-13 05:27:37 -08:00
|
|
|
"lilith-auto-commit-pipeline>=0.1.0",
|
|
|
|
|
"lilith-pipeline-framework>=1.0.0",
|
2026-01-04 21:50:37 -08:00
|
|
|
"httpx>=0.27.0",
|
|
|
|
|
"pydantic>=2.0",
|
|
|
|
|
"pyyaml>=6.0",
|
|
|
|
|
"uvicorn>=0.30.0",
|
2026-01-09 19:41:35 -08:00
|
|
|
"typer>=0.12.0",
|
2026-01-14 11:02:09 -08:00
|
|
|
"sqlalchemy[asyncio]>=2.0.0",
|
|
|
|
|
"aiosqlite>=0.19.0",
|
2026-01-04 21:50:37 -08:00
|
|
|
]
|
|
|
|
|
|
2026-01-09 19:41:35 -08:00
|
|
|
[project.scripts]
|
|
|
|
|
commits = "auto_commit_service.cli:main"
|
|
|
|
|
|
2026-01-04 21:50:37 -08:00
|
|
|
[project.optional-dependencies]
|
2026-01-05 15:24:28 -08:00
|
|
|
model-boss = [
|
|
|
|
|
"lilith-model-boss>=0.1.0",
|
|
|
|
|
]
|
2026-04-12 19:43:37 -07:00
|
|
|
tray = [
|
|
|
|
|
"rumps>=0.4.0",
|
|
|
|
|
]
|
2026-01-04 21:50:37 -08:00
|
|
|
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"]
|