Files
takopi/codex_telegram_bridge/pyproject.toml
T

29 lines
730 B
TOML

[project]
name = "codex-telegram-bridge"
version = "0.1.0"
description = "Telegram bridge tools for Codex."
readme = "readme.md"
requires-python = ">=3.10"
dependencies = [
"markdown-it-py",
"sulguk",
"tomli; python_version < '3.11'",
"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"]