41 lines
1.2 KiB
Python
41 lines
1.2 KiB
Python
# Configuration file for the Sphinx documentation builder.
|
|
#
|
|
# For the full list of built-in configuration values, see the documentation:
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html
|
|
|
|
# -- Project information -----------------------------------------------------
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
|
|
|
|
project = 'ESP32-C3_ZEN'
|
|
copyright = '2025, Alexander Bobkov'
|
|
author = 'Alexander Bobkov'
|
|
release = '5.0'
|
|
|
|
# -- General configuration ---------------------------------------------------
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
|
|
|
extensions = [
|
|
'sphinx.ext.autodoc',
|
|
'sphinx.ext.viewcode',
|
|
]
|
|
|
|
templates_path = ['_templates']
|
|
exclude_patterns = []
|
|
|
|
|
|
|
|
# -- Options for HTML output -------------------------------------------------
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
|
|
|
|
html_theme = "classic"
|
|
html_logo = "_static/logo.png"
|
|
html_favicon = "_static/favicon.ico"
|
|
html_title = "ESP32-C3_ZEN Documentation"
|
|
html_short_title = "ESP32-C3_ZEN"
|
|
html_show_sourcelink = False
|
|
html_show_sphinx = False
|
|
htmlhelp_basename = 'ESP32-C3_ZENdoc'
|
|
# Custom theme path
|
|
html_theme_path = ["_themes", ]
|
|
html_static_path = ['_static']
|