38 lines
832 B
TOML
38 lines
832 B
TOML
[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"]
|