requirements-base.txt 693 B

12345678910111213141516171819202122232425262728293031323334
  1. # BASE: required to build or create images with zephyr
  2. #
  3. # While technically west isn't required it's considered in base since it's
  4. # part of the recommended workflow
  5. # used by various build scripts
  6. pyelftools>=0.26
  7. # used by dts generation to parse binding YAMLs, also used by
  8. # twister to parse YAMLs, by west, zephyr_module,...
  9. PyYAML>=5.1
  10. # YAML validation. Used by zephyr_module.
  11. pykwalify
  12. # used by west_commands
  13. canopen
  14. packaging
  15. progress
  16. psutil
  17. pylink-square
  18. # for ram/rom reports
  19. anytree
  20. # intelhex used by mergehex.py
  21. intelhex
  22. # it's west
  23. west>=0.10.1
  24. # used for windows based 'menuconfig'
  25. # "win32" is used for 64-bit Windows as well
  26. windows-curses; sys_platform == "win32"