Files
MeshChatX/vendor/lxmfy/docs/source/conf.py
T

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 = "LXMFy"
copyright = "2025, Ivan"
author = "Ivan"
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.viewcode",
"sphinx.ext.napoleon",
]
# -- Internationalization ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#internationalization
locale_dirs = ["../locales/"]
gettext_compact = False
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 = "furo"
html_static_path = ["_static"]
# Furo theme options
html_theme_options = {
"sidebar_hide_name": False,
"navigation_with_keys": True,
}