Добавлено описание и документация для HVideoTool, включая функционал, требования, установку и запуск приложения для обнаружения цензуры на изображениях.

This commit is contained in:
Leonid Pershin
2026-06-06 15:11:53 +03:00
parent 10bf87aa47
commit 33f20fe681
28 changed files with 2256 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "hvideotool"
version = "0.1.0"
description = "Desktop GUI utility that detects and outlines already-applied censorship in images"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "TBD" }
authors = [{ name = "Leonid Pershin" }]
dependencies = [
"PySide6>=6.6",
"opencv-python>=4.8",
"numpy>=1.24",
"imageio-ffmpeg>=0.4", # bundles an ffmpeg binary for "Создать из ролика…"
]
[project.optional-dependencies]
# Trained-model detector (future work). PyTorch must be installed separately
# with the correct CUDA build — see README. Installing this extra only pulls in
# Ultralytics; it does NOT install torch.
yolo = ["ultralytics>=8.0"]
[project.scripts]
hvideotool = "hvideotool.__main__:main"
[tool.setuptools.packages.find]
include = ["hvideotool*"]