Ajout de HandBrake_recursive proxmox_export_disk tree_stream

This commit is contained in:
lionel
2025-05-12 13:28:19 +02:00
commit 534b6d9455
32 changed files with 1247 additions and 0 deletions

22
tree_stream/setup.py Normal file
View File

@ -0,0 +1,22 @@
from setuptools import setup, find_packages
setup(
name="tree_stream",
version="0.1.0",
description="Affiche une arborescence enrichie des fichiers vidéo avec chapitres et flux",
author="TonNom",
packages=find_packages(),
install_requires=["ffmpeg-python"],
entry_points={
"console_scripts": [
"tree_stream=tree_stream.main:main",
]
},
classifiers=[
"Programming Language :: Python :: 3",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)