jekyll-to-hugo/docs/conf.py
2023-06-05 12:33:49 +03:00

32 lines
1.1 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 = "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
extensions = ["autoapi.extension", "myst_parser"]
templates_path = ["_templates"]
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
source_suffix = [".rst", ".md"]
# AutoAPI
autoapi_type = "python"
autoapi_dirs = ["../app"]
# -- 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"]