jekyll-to-hugo/docs/conf.py

33 lines
1.1 KiB
Python
Raw Normal View History

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"
2023-06-05 10:52:29 +00:00
release = "0.0.9"
2023-06-05 09:33:04 +00:00
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"]