Initial version
This commit is contained in:
parent
24c03dc92a
commit
6f332d46aa
4 changed files with 835 additions and 6 deletions
21
pyproject.toml
Normal file
21
pyproject.toml
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
[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 = []
|
||||
Loading…
Add table
Add a link
Reference in a new issue