mirror of
https://github.com/espressif/esp-mqtt.git
synced 2025-10-04 19:11:42 +02:00
40 lines
1.1 KiB
Python
40 lines
1.1 KiB
Python
# SPDX-FileCopyrightText: 2025 Espressif Systems (Shanghai) CO LTD
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# Common (non-language-specific) configuration for Sphinx
|
|
#
|
|
|
|
# type: ignore
|
|
# pylint: disable=wildcard-import
|
|
# pylint: disable=undefined-variable
|
|
# ruff: noqa: F405
|
|
|
|
from __future__ import print_function, unicode_literals
|
|
|
|
from esp_docs.conf_docs import * # noqa: F403,F401
|
|
|
|
# IDF_PATH validation removed - not needed for standalone component docs
|
|
# Only required when using ESP-IDF extensions that depend on IDF environment
|
|
|
|
|
|
extensions += ["sphinx_copybutton", # noqa: F405
|
|
# Needed as a trigger for running doxygen
|
|
"esp_docs.esp_extensions.dummy_build_system",
|
|
"esp_docs.esp_extensions.run_doxygen"
|
|
]
|
|
|
|
# link roles config
|
|
github_repo = "espressif/esp-mqtt"
|
|
|
|
# context used by sphinx_idf_theme
|
|
html_context["github_user"] = "espressif" # noqa: F405
|
|
html_context["github_repo"] = "esp-mqtt" # noqa: F405
|
|
|
|
# Extra options required by sphinx_idf_theme
|
|
project_slug = "esp-mqtt"
|
|
versions_url = "./_static/mqtt_docs_versions.js"
|
|
|
|
idf_targets = [ "esp32" ]
|
|
languages = ["en"]
|