requirements.txt 1.4 KB

12345678910111213141516171819202122232425262728293031
  1. # This is a list of python packages needed for ESP-IDF. This file is used with pip.
  2. # Please see the Get Started section of the ESP-IDF Programming Guide for further information.
  3. #
  4. setuptools>=21
  5. # The setuptools package is required to install source distributions and on some systems is not installed by default.
  6. # Please keep it as the first item of this list. Version 21 is required to handle PEP 508 environment markers.
  7. #
  8. click>=5.0
  9. pyserial>=3.0
  10. future>=0.15.2
  11. cryptography>=2.1.4
  12. pyparsing>=2.0.3,<2.4.0
  13. pyelftools>=0.22
  14. gdbgui==0.13.2.0
  15. # 0.13.2.1 supports Python 3.6+ only
  16. # Windows is not supported since 0.14.0.0. See https://github.com/cs01/gdbgui/issues/348
  17. pygdbmi<=0.9.0.2
  18. # The pygdbmi required max version 0.9.0.2 since 0.9.0.3 is not copatible with latest gdbgui (>=0.13.2.0)
  19. python-socketio<5; python_version<="2.7"
  20. # esptool requirements (see components/esptool_py/esptool/setup.py)
  21. reedsolo>=1.5.3,<=1.5.4
  22. bitstring>=3.1.6
  23. ecdsa>=0.16.0
  24. # windows-curses are required in Windows command line but cannot be installed in MSYS2. A requirement like
  25. # "windows-curses; sys_platform == 'win32'" would want to install the package on both of them. There is no environment
  26. # marker for detecting MSYS2. So instead, a dummy custom package is used with "windows-curses" dependency for Windows
  27. # command line.
  28. file://${IDF_PATH}/tools/kconfig_new/esp-windows-curses; sys_platform == 'win32'