49 lines
1.1 KiB
TOML
49 lines
1.1 KiB
TOML
[project]
|
|
name = "takopi"
|
|
authors = [{name = "banteg"}]
|
|
version = "0.2.0"
|
|
description = "Run OpenAI Codex CLI with Telegram as the human-in-the-loop interface."
|
|
readme = "readme.md"
|
|
license = { file = "LICENSE" }
|
|
requires-python = ">=3.14"
|
|
dependencies = [
|
|
"anyio>=4.12.0",
|
|
"httpx>=0.28.1",
|
|
"markdown-it-py",
|
|
"rich>=14.2.0",
|
|
"sulguk>=0.11.1",
|
|
"typer>=0.21.0",
|
|
]
|
|
classifiers = [
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.14",
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/banteg/takopi"
|
|
Repository = "https://github.com/banteg/takopi"
|
|
Issues = "https://github.com/banteg/takopi/issues"
|
|
|
|
[project.scripts]
|
|
takopi = "takopi.cli:main"
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.9.18,<0.10.0"]
|
|
build-backend = "uv_build"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=9.0.2",
|
|
"pytest-anyio>=0.0.0",
|
|
"pytest-cov>=7.0.0",
|
|
"ruff>=0.14.10",
|
|
"ty>=0.0.8",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
addopts = ["--cov=takopi", "--cov-report=term-missing"]
|
|
testpaths = ["tests"]
|