vid-to-gif-with-subs/pyproject.toml
2026-01-16 10:11:19 +00:00

21 lines
464 B
TOML

[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "video-subtitle-gif"
version = "1.0.0"
description = "Search video subtitles and create GIF clips for text matches"
authors = [{name = "Dan"}]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"srt>=3.5.0",
"webvtt-py>=0.4.6",
]
[project.scripts]
video-subtitle-gif = "video_subtitle_gif:main"
[project.optional-dependencies]
dev = []