chore: move telegram projects to top-level

This commit is contained in:
banteg
2025-12-28 21:31:48 +04:00
parent 5f4f97f529
commit 39c0bcec45
11 changed files with 2 additions and 2 deletions
+27
View File
@@ -0,0 +1,27 @@
[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'",
]
[project.scripts]
codex-telegram-exec-bridge = "codex_telegram_bridge.exec_bridge:main"
codex-telegram-mcp-bridge = "codex_telegram_bridge.mcp_bridge:main"
codex-telegram-tmux-notify = "codex_telegram_bridge.tmux_notify:main"
codex-telegram-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"]