21 lines
456 B
TOML
21 lines
456 B
TOML
[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 = [
|
|
"agent-client-protocol>=0.10.0",
|
|
"pyyaml>=6.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
honker = "honker.main:main"
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.11.11,<0.12.0"]
|
|
build-backend = "uv_build"
|