1a8e1175bSopenharmony_ci# Configuration file for the Sphinx documentation builder. 2a8e1175bSopenharmony_ci# 3a8e1175bSopenharmony_ci# For the full list of built-in configuration values, see the documentation: 4a8e1175bSopenharmony_ci# https://www.sphinx-doc.org/en/master/usage/configuration.html 5a8e1175bSopenharmony_ci 6a8e1175bSopenharmony_ci# -- Project information ----------------------------------------------------- 7a8e1175bSopenharmony_ci# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information 8a8e1175bSopenharmony_ciimport glob 9a8e1175bSopenharmony_ci 10a8e1175bSopenharmony_ciproject = 'Mbed TLS Versioned' 11a8e1175bSopenharmony_cicopyright = '2023, Mbed TLS Contributors' 12a8e1175bSopenharmony_ciauthor = 'Mbed TLS Contributors' 13a8e1175bSopenharmony_ci 14a8e1175bSopenharmony_ci# -- General configuration --------------------------------------------------- 15a8e1175bSopenharmony_ci# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration 16a8e1175bSopenharmony_ci 17a8e1175bSopenharmony_ciextensions = ['breathe', 'sphinx.ext.graphviz'] 18a8e1175bSopenharmony_ci 19a8e1175bSopenharmony_citemplates_path = ['_templates'] 20a8e1175bSopenharmony_ciexclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] 21a8e1175bSopenharmony_ci 22a8e1175bSopenharmony_cibreathe_projects = { 23a8e1175bSopenharmony_ci 'mbedtls-versioned': '../apidoc/xml' 24a8e1175bSopenharmony_ci} 25a8e1175bSopenharmony_cibreathe_default_project = 'mbedtls-versioned' 26a8e1175bSopenharmony_ci 27a8e1175bSopenharmony_ciprimary_domain = 'c' 28a8e1175bSopenharmony_cihighlight_language = 'c' 29a8e1175bSopenharmony_ci 30a8e1175bSopenharmony_ci# -- Options for HTML output ------------------------------------------------- 31a8e1175bSopenharmony_ci# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output 32a8e1175bSopenharmony_ci 33a8e1175bSopenharmony_cihtml_theme = 'sphinx_rtd_theme' 34a8e1175bSopenharmony_cihtml_static_path = ['_static'] 35