mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-15 09:04:17 +00:00

Fixes errors encountered when handling SVG graphics, unicode characters, and deeply nested lists (i.e. in the change log) with the `latexpdf` docs build. Adds `sphinxcontrib-svg2pdfconverter` to allow embedding SVG images into PDF files; changes the LaTeX engine to XeLaTex to provide wider support for unicode characters (see [1] for more details); and increases the maximum list depth. [1] https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-latex_engine Change-Id: I2ee265d301f6822bae7aa6dfa3a8bfcf070076d3 Signed-off-by: Harrison Mutai <harrison.mutai@arm.com>
33 lines
732 B
TOML
33 lines
732 B
TOML
[tool.poetry]
|
|
name = "trusted-firmware-a"
|
|
version = "2.9.0"
|
|
description = "Trusted Firmware-A (TF-A) Python dependencies."
|
|
authors = ["Arm Ltd."]
|
|
license = "BSD-3-Clause"
|
|
readme = "readme.rst"
|
|
packages = [
|
|
{ include = "memory", from = "tools/memory"}
|
|
]
|
|
|
|
[tool.poetry.scripts]
|
|
memory = "memory.memmap:main"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
|
|
[tool.poetry.group.doc.dependencies]
|
|
sphinx = "^5.3.0"
|
|
myst-parser = "^0.18.1"
|
|
sphinxcontrib-plantuml = "^0.24.1"
|
|
sphinx-rtd-theme = "^1.1.1"
|
|
pip-tools = "^6.4.0"
|
|
sphinxcontrib-svg2pdfconverter = "^1.2.2"
|
|
|
|
[tool.poetry.group.ci.dependencies]
|
|
click = "^8.1.3"
|
|
|
|
[tool.poetry.group.memory.dependencies]
|
|
pyelftools = "^0.29"
|
|
anytree = "^2.8.0"
|
|
click = "^8.1.3"
|
|
prettytable = "^3.5.0"
|