# 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
[docs]
project = 'SiMa.ai Sima PCIe CPP'
[docs]
copyright = '2024, SiMa Technologies'
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
[docs]
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.intersphinx',
'sphinx.ext.autosectionlabel',
'sphinx.ext.todo',
'sphinx.ext.coverage',
'sphinx.ext.mathjax',
'sphinx.ext.ifconfig',
'sphinx.ext.viewcode',
'sphinx.ext.inheritance_diagram',
]
[docs]
templates_path = ['_templates']
[docs]
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
# -- Options for HTML output -------------------------------------------------
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
[docs]
html_theme = 'sphinx_rtd_theme'
[docs]
html_static_path = ['_static']
[docs]
html_logo = "_static/logo.svg"
[docs]
html_theme_options = {
'canonical_url': '',
'analytics_id': '',
'display_version': False,
'prev_next_buttons_location': 'bottom',
'style_external_links': False,
'logo_only': True,
# Toc options
'collapse_navigation': True,
'sticky_navigation': True,
'navigation_depth': 4,
'includehidden': True,
'titles_only': False
}