mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-08 05:43:53 +00:00

This change refactors the memmap tool into a Poetry project, with its own dependencies. You can continue to run it manually with: poetry run memory <args> Change-Id: I346283df1b8bfad4babc1f5a3861dab94d4a006a Signed-off-by: Chris Kay <chris.kay@arm.com>
21 lines
554 B
TOML
21 lines
554 B
TOML
[tool.poetry]
|
|
name = "memory"
|
|
version = "0.1.0"
|
|
description = "A tool for analysis of static memory consumption by TF-A images"
|
|
authors = ["Chris Kay <chris.kay@arm.com>", "Harrison Mutai <harrison.mutai@arm.com>"]
|
|
license = "BSD-3-Clause"
|
|
packages = [{include = "memory", from = "src"}]
|
|
|
|
[tool.poetry.dependencies]
|
|
anytree = "^2.8.0"
|
|
click = "^8.1.3"
|
|
prettytable = "^3.5.0"
|
|
pyelftools = "^0.29.0"
|
|
python = "^3.8.0"
|
|
|
|
[tool.poetry.scripts]
|
|
memory = "memory.memmap:main"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|