Initial commit: auto-video-cut project

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Christoph K.
2026-04-06 21:51:01 +02:00
commit 267070ad52
15 changed files with 2635 additions and 0 deletions

22
pyproject.toml Executable file
View File

@@ -0,0 +1,22 @@
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.backends.legacy:build"
[project]
name = "auto-video-cut"
version = "0.1.0"
description = "Automatisches Video-Schnitt-Tool für die Kommandozeile"
requires-python = ">=3.10"
dependencies = [
"typer>=0.12",
"pyyaml>=6.0",
"scenedetect[opencv]>=0.6",
"ffmpeg-python>=0.2",
]
[project.scripts]
video-cut = "auto_video_cut.cli:app"
[tool.setuptools.packages.find]
where = ["."]
include = ["auto_video_cut*"]