2024-01-12 20:05:50 +00:00
|
|
|
# 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
|
|
|
|
|
2024-05-02 22:21:51 +00:00
|
|
|
project = "LimboAI"
|
|
|
|
copyright = "2021-present Serhii Snitsaruk and the LimboAI contributors"
|
|
|
|
author = "Serhii Snitsaruk and the LimboAI contributors"
|
|
|
|
release = "1.0"
|
2024-01-12 20:05:50 +00:00
|
|
|
|
|
|
|
# -- General configuration ---------------------------------------------------
|
|
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
|
|
|
|
2024-05-02 22:21:51 +00:00
|
|
|
extensions = ["sphinx_rtd_dark_mode", "sphinx_copybutton"]
|
2024-01-12 20:05:50 +00:00
|
|
|
|
2024-05-02 22:21:51 +00:00
|
|
|
master_doc = "index"
|
|
|
|
templates_path = ["_templates"]
|
|
|
|
exclude_patterns = ["_build"]
|
2024-01-12 20:05:50 +00:00
|
|
|
|
|
|
|
# -- 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"
|
|
|
|
|
2024-01-14 15:17:35 +00:00
|
|
|
# -- Dark-mode configuration.
|
2024-01-13 20:31:04 +00:00
|
|
|
default_dark_mode = False
|
2024-01-12 20:05:50 +00:00
|
|
|
|
|
|
|
# -- Options for HTML output -------------------------------------------------
|
|
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
|
|
|
|
|
2024-05-02 22:21:51 +00:00
|
|
|
html_theme = "sphinx_rtd_theme"
|
|
|
|
html_static_path = ["_static"]
|
2024-01-12 22:42:32 +00:00
|
|
|
html_logo = "logo.png"
|
|
|
|
html_theme_options = {
|
2024-05-02 22:21:51 +00:00
|
|
|
"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
|
|
|
}
|