chore: move to top level

This commit is contained in:
banteg
2025-12-29 15:17:32 +04:00
parent a31f8c2459
commit dee204fac9
22 changed files with 102 additions and 236 deletions
+31
View File
@@ -0,0 +1,31 @@
[project]
name = "takopi"
version = "0.1.0"
description = "Telegram bridge tools for Codex."
readme = "readme.md"
requires-python = ">=3.12"
dependencies = [
"httpx>=0.28.1",
"markdown-it-py",
"sulguk>=0.11.0",
"typer",
]
[project.scripts]
takopi = "takopi.exec_bridge:main"
exec-bridge = "takopi.exec_bridge:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/takopi"]
[tool.hatch.build.targets.sdist]
include = ["src/takopi", "readme.md"]
[dependency-groups]
dev = [
"pytest>=9.0.2",
]