Initial project skeleton - basic process management

This commit is contained in:
2026-05-09 15:08:43 -04:00
commit e846f029ef
14 changed files with 277 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
[project]
name = "honker"
version = "0.1.0"
description = "ACP bridge between Signal Messenger and the Goose coding agent"
readme = "README.md"
authors = [
{ name = "James Brechtel", email = "git@jamesbrechtel.com" }
]
requires-python = ">=3.12"
dependencies = [
"pyyaml>=6.0",
]
[project.scripts]
honker = "honker.main:main"
[build-system]
requires = ["uv_build>=0.11.11,<0.12.0"]
build-backend = "uv_build"