Ajout de HandBrake_recursive proxmox_export_disk tree_stream
This commit is contained in:
22
tree_stream/setup.py
Normal file
22
tree_stream/setup.py
Normal 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',
|
||||
)
|
Reference in New Issue
Block a user