Initialisation depot

This commit is contained in:
Serge NOEL
2026-02-10 12:12:11 +01:00
commit c3176e8d79
818 changed files with 52573 additions and 0 deletions

19
Wiki-print/pyproject.toml Normal file
View File

@@ -0,0 +1,19 @@
[tool.poetry]
name = "wiki-print"
version = "0.1.0"
description = "Convert Wiki.js articles with diagrams to LibreOffice documents. Extracts diagram code blocks as .drawio files for draw.io, and uses pandoc for document conversion."
authors = ["Your Name <your.email@example.com>"]
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
PyYAML = "^6.0"
python-docx = "^1.1.0"
Pillow = "^10.0.0"
requests = "^2.31.0"
# 're' and 'os' are from the Python standard library and do not need to be listed as dependencies.
# 'pandoc' and 'draw.io' are external tools used by the application and should be installed in the environment.
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"