2018-08-23 09:16:56 +00:00
|
|
|
# This is a list of python packages needed for ESP-IDF. This file is used with pip.
|
|
|
|
# Please see the Get Started section of the ESP-IDF Programming Guide for further information.
|
2018-08-15 07:52:07 +00:00
|
|
|
#
|
2019-11-04 14:43:13 +00:00
|
|
|
setuptools>=21
|
2018-09-07 06:44:19 +00:00
|
|
|
# The setuptools package is required to install source distributions and on some systems is not installed by default.
|
2019-11-04 14:43:13 +00:00
|
|
|
# Please keep it as the first item of this list. Version 21 is required to handle PEP 508 environment markers.
|
2018-09-07 06:44:19 +00:00
|
|
|
#
|
2023-07-11 13:39:35 +00:00
|
|
|
# importlib_metadata: is part of python3.8 and newer as importlib.metadata
|
|
|
|
importlib_metadata; python_version < "3.8"
|
|
|
|
packaging
|
2020-11-26 01:35:05 +00:00
|
|
|
click>=7.0
|
2021-02-01 10:40:03 +00:00
|
|
|
pyserial>=3.3
|
2018-09-29 10:00:12 +00:00
|
|
|
future>=0.15.2
|
2021-08-13 07:11:42 +00:00
|
|
|
|
2018-11-16 05:57:00 +00:00
|
|
|
cryptography>=2.1.4
|
2021-08-13 07:11:42 +00:00
|
|
|
--only-binary cryptography
|
|
|
|
# Only binary for cryptography is here to make it work on ARMv7 architecture
|
|
|
|
# We do have cryptography binary on https://dl.espressif.com/pypi for ARM
|
|
|
|
# On https://pypi.org/ are no ARM binaries as standard now
|
|
|
|
|
2019-04-17 07:57:42 +00:00
|
|
|
pyparsing>=2.0.3,<2.4.0
|
2018-12-12 17:38:23 +00:00
|
|
|
pyelftools>=0.22
|
2022-05-13 17:21:30 +00:00
|
|
|
idf-component-manager~=1.2
|
2023-05-05 11:17:12 +00:00
|
|
|
urllib3<2
|
2020-12-09 12:27:01 +00:00
|
|
|
|
2022-11-10 16:06:44 +00:00
|
|
|
gdbgui==0.13.2.0; python_version < "3.11"
|
2020-08-26 06:40:05 +00:00
|
|
|
# 0.13.2.1 supports Python 3.6+ only
|
|
|
|
# Windows is not supported since 0.14.0.0. See https://github.com/cs01/gdbgui/issues/348
|
2022-11-10 16:06:44 +00:00
|
|
|
pygdbmi<=0.9.0.2; python_version < "3.11"
|
2021-01-19 05:39:43 +00:00
|
|
|
# The pygdbmi required max version 0.9.0.2 since 0.9.0.3 is not compatible with latest gdbgui (>=0.13.2.0)
|
2021-04-27 12:27:22 +00:00
|
|
|
# A compatible Socket.IO should be used. See https://github.com/miguelgrinberg/python-socketio/issues/578
|
2022-11-10 16:06:44 +00:00
|
|
|
python-socketio<5; python_version < "3.11"
|
|
|
|
jinja2<3.1; python_version < "3.11" # See https://github.com/espressif/esp-idf/issues/8760
|
|
|
|
itsdangerous<2.1; python_version < "3.11"
|
|
|
|
|
|
|
|
# gdbgui is not supported on Python 3.11. See https://github.com/cs01/gdbgui/issues/447
|
|
|
|
pygdbmi<=0.9.0.2; python_version > "3.10"
|
2020-12-09 12:27:01 +00:00
|
|
|
|
2020-11-04 23:37:03 +00:00
|
|
|
kconfiglib==13.7.1
|
|
|
|
|
|
|
|
# esptool requirements (see components/esptool_py/esptool/setup.py)
|
2020-07-14 09:35:37 +00:00
|
|
|
reedsolo>=1.5.3,<=1.5.4
|
2022-11-20 16:31:21 +00:00
|
|
|
# bitstring 4 dropped support for Python 3.6 and older
|
|
|
|
bitstring>=3.1.6,<4
|
2020-11-04 23:37:03 +00:00
|
|
|
ecdsa>=0.16.0
|
2019-07-23 19:37:31 +00:00
|
|
|
|
2021-01-19 05:39:43 +00:00
|
|
|
# espcoredump requirements
|
|
|
|
# This is the last version supports both 2.7 and 3.4
|
|
|
|
construct==2.10.54
|
|
|
|
|
2019-09-10 07:58:52 +00:00
|
|
|
# windows-curses are required in Windows command line but cannot be installed in MSYS2. A requirement like
|
|
|
|
# "windows-curses; sys_platform == 'win32'" would want to install the package on both of them. There is no environment
|
|
|
|
# marker for detecting MSYS2. So instead, a dummy custom package is used with "windows-curses" dependency for Windows
|
|
|
|
# command line.
|
|
|
|
file://${IDF_PATH}/tools/kconfig_new/esp-windows-curses; sys_platform == 'win32'
|