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#
4setuptools>=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#
8click>=7.0
9pyserial>=3.3
10future>=0.15.2
11
12cryptography>=2.1.4
13--only-binary cryptography
14# Only binary for cryptography is here to make it work on ARMv7 architecture
15# We do have cryptography binary on https://dl.espressif.com/pypi for ARM
16# On https://pypi.org/ are no ARM binaries as standard now
17
18pyparsing>=2.0.3,<2.4.0
19pyelftools>=0.22
20idf-component-manager~=1.0
21
22gdbgui==0.13.2.0
23# 0.13.2.1 supports Python 3.6+ only
24# Windows is not supported since 0.14.0.0. See https://github.com/cs01/gdbgui/issues/348
25pygdbmi<=0.9.0.2
26# The pygdbmi required max version 0.9.0.2 since 0.9.0.3 is not compatible with latest gdbgui (>=0.13.2.0)
27# A compatible Socket.IO should be used. See https://github.com/miguelgrinberg/python-socketio/issues/578
28python-socketio<5
29jinja2<3.1  # See https://github.com/espressif/esp-idf/issues/8760
30itsdangerous<2.1
31
32kconfiglib==13.7.1
33
34# esptool requirements (see components/esptool_py/esptool/setup.py)
35reedsolo>=1.5.3,<=1.5.4
36bitstring>=3.1.6
37ecdsa>=0.16.0
38python-socketio<5; python_version<="2.7"
39
40# espcoredump requirements
41# This is the last version supports both 2.7 and 3.4
42construct==2.10.54
43
44# windows-curses are required in Windows command line but cannot be installed in MSYS2. A requirement like
45# "windows-curses; sys_platform == 'win32'" would want to install the package on both of them. There is no environment
46# marker for detecting MSYS2. So instead, a dummy custom package is used with "windows-curses" dependency for Windows
47# command line.
48file://${IDF_PATH}/tools/kconfig_new/esp-windows-curses; sys_platform == 'win32'
49