Initial commit

This commit is contained in:
2026-05-13 16:04:17 +02:00
commit b66612d672
43 changed files with 10515 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pve-backup-report"
version = "1.0.0"
description = "Rapport quotidien des sauvegardes Proxmox VE vers Proxmox Backup Server"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.11"
dependencies = [
"python-dotenv>=1.0,<2.0",
"requests>=2.32,<3.0",
"reportlab>=4.2,<5.0",
"jinja2>=3.1,<4.0",
"weasyprint>=62,<63",
"pydyf>=0.10,<0.11",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0,<9.0",
]
[project.scripts]
pve-backup-report = "pve_backup_report.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
pve_backup_report = ["templates/*.j2", "templates/*.css"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]