28 lines
495 B
TOML
28 lines
495 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "cht"
|
|
version = "0.1.0"
|
|
description = "Stream viewer with Claude agent integration"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"ffmpeg-python",
|
|
"python-mpv",
|
|
"Pillow",
|
|
"numpy",
|
|
"claude-agent-sdk",
|
|
"openai",
|
|
"pygments",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["cht*"]
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest"]
|
|
|
|
[project.scripts]
|
|
cht = "cht.app:main"
|