pyproject.toml 856 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. [tool.poetry]
  2. name = "trusted-firmware-a"
  3. version = "2.11.0"
  4. description = "Trusted Firmware-A (TF-A) Python dependencies."
  5. authors = ["Arm Ltd."]
  6. license = "BSD-3-Clause"
  7. readme = "readme.rst"
  8. packages = [
  9. { include = "memory", from = "tools/memory"}
  10. ]
  11. [tool.poetry.scripts]
  12. memory = "memory.memmap:main"
  13. [tool.poetry.dependencies]
  14. python = "^3.8"
  15. cot-dt2c = {path = "tools/cot_dt2c", develop = true}
  16. tlc = {path = "tools/tlc"}
  17. [tool.poetry.group.docs]
  18. optional = true
  19. [tool.poetry.group.docs.dependencies]
  20. sphinx = "^5.3.0"
  21. myst-parser = "^0.18.1"
  22. sphinxcontrib-plantuml = "^0.24.1"
  23. sphinx-rtd-theme = "^1.1.1"
  24. pip-tools = "^6.4.0"
  25. sphinxcontrib-svg2pdfconverter = "^1.2.2"
  26. [tool.poetry.group.ci.dependencies]
  27. click = "^8.1.3"
  28. [tool.poetry.group.memory.dependencies]
  29. pyelftools = "^0.29"
  30. anytree = "^2.8.0"
  31. click = "^8.1.3"
  32. prettytable = "^3.5.0"