36 lines
1.2 KiB
Python
36 lines
1.2 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 = 'LimboAI'
|
||
|
copyright = 'Copyright 2021-present Serhii Snitsaruk and the LimboAI contributors'
|
||
|
author = 'Serhii Snitsaruk'
|
||
|
release = '1.0'
|
||
|
|
||
|
# -- General configuration ---------------------------------------------------
|
||
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
||
|
|
||
|
extensions = ['sphinx_markdown_builder']
|
||
|
|
||
|
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"
|
||
|
|
||
|
|
||
|
# -- 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']
|