2023-06-05 09:33:04 +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
|
|
|
|
project = "Jekyll To Hugo"
|
|
|
|
copyright = "2023-Present, Denis Nutiu and contributors"
|
|
|
|
author = "Denis Nutiu and contributors"
|
|
|
|
release = "0.0.7"
|
|
|
|
html_logo = "_static/nuculabs_logo.png"
|
|
|
|
|
|
|
|
# -- General configuration ---------------------------------------------------
|
|
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
|
|
|
|
2023-06-05 09:33:49 +00:00
|
|
|
extensions = ["autoapi.extension", "myst_parser"]
|
2023-06-05 09:33:04 +00:00
|
|
|
|
|
|
|
templates_path = ["_templates"]
|
|
|
|
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
|
|
|
|
|
2023-06-05 09:33:49 +00:00
|
|
|
source_suffix = [".rst", ".md"]
|
2023-06-05 09:33:04 +00:00
|
|
|
|
|
|
|
# AutoAPI
|
2023-06-05 09:33:49 +00:00
|
|
|
autoapi_type = "python"
|
|
|
|
autoapi_dirs = ["../app"]
|
2023-06-05 09:33:04 +00:00
|
|
|
|
|
|
|
# -- 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"]
|