Files
auto-video-cut/pyproject.toml
Christoph K. 267070ad52 Initial commit: auto-video-cut project
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-06 21:51:01 +02:00

23 lines
505 B
TOML
Executable File

[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*"]