auto-commit-service/pyproject.toml
Lilith 91b3b3979a chore(@ml/auto-commit-service): 📦 bump version to 0.1.1
- Fix CRASHED status handling to attempt recovery instead of giving up
- Daemon now auto-starts llama-service after reboot when stale PID detected
2026-01-09 11:08:18 -08:00

34 lines
708 B
TOML

[project]
name = "auto-commit-service"
version = "0.1.1"
description = "Automated commit message generation service using local LLM inference"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"lilith-ml-service-base",
"httpx>=0.27.0",
"pydantic>=2.0",
"pyyaml>=6.0",
"uvicorn>=0.30.0",
]
[project.optional-dependencies]
model-boss = [
"lilith-model-boss>=0.1.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"]