requirements.txt 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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>=7.0
  9. pyserial>=3.3
  10. future>=0.15.2
  11. cryptography>=2.1.4
  12. --only-binary cryptography
  13. # Only binary for cryptography is here to make it work on ARMv7 architecture
  14. # We do have cryptography binary on https://dl.espressif.com/pypi for ARM
  15. # On https://pypi.org/ are no ARM binaries as standard now
  16. pyparsing>=3.0.3 # https://github.com/pyparsing/pyparsing/issues/319 is fixed in 3.0.3
  17. pyelftools>=0.22
  18. idf-component-manager>=0.2.99-beta
  19. gdbgui==0.13.2.0
  20. # 0.13.2.1 supports Python 3.6+ only
  21. # Windows is not supported since 0.14.0.0. See https://github.com/cs01/gdbgui/issues/348
  22. pygdbmi<=0.9.0.2
  23. # The pygdbmi required max version 0.9.0.2 since 0.9.0.3 is not compatible with latest gdbgui (>=0.13.2.0)
  24. # A compatible Socket.IO should be used. See https://github.com/miguelgrinberg/python-socketio/issues/578
  25. python-socketio<5
  26. # esptool requirements (see components/esptool_py/esptool/setup.py)
  27. reedsolo>=1.5.3,<=1.5.4
  28. bitstring>=3.1.6
  29. ecdsa>=0.16.0
  30. # espcoredump requirements
  31. # This is the last version supports both 2.7 and 3.4
  32. construct==2.10.54
  33. # kconfig & menuconfig support
  34. kconfiglib==13.7.1
  35. windows-curses; sys_platform == 'win32'