limboai/doc/source/conf.py

44 lines
1.5 KiB
Python
Raw Normal View History

# 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 = "LimboAI"
copyright = "2021-present Serhii Snitsaruk and the LimboAI contributors"
author = "Serhii Snitsaruk and the LimboAI contributors"
release = "1.0"
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
extensions = ["sphinx_rtd_dark_mode", "sphinx_copybutton"]
master_doc = "index"
templates_path = ["_templates"]
exclude_patterns = ["_build"]
# -- Markdown configuration (sphinx_markdown_builder).
# markdown_anchor_sections = True
# markdown_anchor_signatures = True
# markdown_docinfo = ""
# markdown_http_base = "https://your-domain.com/docs"
# markdown_uri_doc_suffix = ".html"
# -- Dark-mode configuration.
2024-01-13 20:31:04 +00:00
default_dark_mode = False
# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
html_theme = "sphinx_rtd_theme"
html_static_path = ["_static"]
2024-01-12 22:42:32 +00:00
html_logo = "logo.png"
html_theme_options = {
"logo_only": True,
"display_version": True,
2024-03-02 15:10:42 +00:00
"collapse_navigation": True,
2024-01-12 22:42:32 +00:00
}