28 lines
694 B
TOML
28 lines
694 B
TOML
[project]
|
|
name = "codex-telegram-bridge"
|
|
version = "0.1.0"
|
|
description = "Telegram bridge tools for Codex."
|
|
readme = "readme.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"markdown-it-py",
|
|
"sulguk",
|
|
"typer",
|
|
]
|
|
|
|
[project.scripts]
|
|
exec-bridge = "codex_telegram_bridge.exec_bridge:main"
|
|
mcp-bridge = "codex_telegram_bridge.mcp_bridge:main"
|
|
tmux-notify = "codex_telegram_bridge.tmux_notify:main"
|
|
tmux-reply = "codex_telegram_bridge.tmux_reply_bot:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/codex_telegram_bridge"]
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
include = ["src/codex_telegram_bridge", "readme.md"]
|