1# .readthedocs.yml 2# Read the Docs configuration file 3# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details 4 5# Required 6version: 2 7 8# Optionally build your docs in additional formats such as PDF and ePub 9formats: 10 - pdf 11 12# Optionally set the version of Python and requirements required to build your docs 13python: 14 version: 2.7 15 install: 16 - requirements: docs/requirements.txt 17 18# We need to list all the submodules included in documenation build by DOxygen 19submodules: 20 include: 21 - components/mqtt/esp-mqtt 22