20 lines
736 B
TOML
20 lines
736 B
TOML
[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"
|