32 lines
583 B
TOML
32 lines
583 B
TOML
[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",
|
|
]
|