23 lines
505 B
TOML
Executable File
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*"]
|