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

View File

@ -0,0 +1,17 @@
from setuptools import setup
setup(
name='proxmox_export_disk',
version='0.1.0',
description='Un script pour récupérer l\'utilisation des disques des VMs dans Proxmox.',
py_modules=['proxmox_export_disk'],
install_requires=[
'openpyxl',
],
entry_points={
'console_scripts': [
'proxmox_export_disk=proxmox_export_disk:main',
],
},
python_requires='>=3.6',
)