43 lines
1.3 KiB
Python
43 lines
1.3 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 = "sphinx_rtd_theme"
|
|
html_theme_path = ["_themes", ]
|
|
html_theme_options = {
|
|
'repository_url': 'esp32-c3-zen',
|
|
'repository_branch': 'main',
|
|
'path_to_docs': 'source',
|
|
'use_repository_button': True,
|
|
'use_issues_button': True,
|
|
'use_edit_page_button': True,
|
|
'use_download_button': True,
|
|
'use_fullscreen_button': True,
|
|
}
|
|
html_static_path = ['_static']
|