22 lines
396 B
TOML
22 lines
396 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",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["cht*"]
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest"]
|
|
|
|
[project.scripts]
|
|
cht = "cht.app:main"
|