1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
# 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
import datetime
project = "PyFDB"
copyright = f"{datetime.datetime.today().year}, ECMWF"
author = "ECMWF"
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
extensions = [
"sphinx.ext.autosectionlabel",
"sphinxcontrib.mermaid",
"autoapi.extension",
"sphinx.ext.viewcode",
"sphinx.ext.napoleon",
"sphinx.ext.autodoc",
"sphinx.ext.doctest",
"sphinx.ext.inheritance_diagram",
]
templates_path = ["_templates"]
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store", "_internal"]
autoapi_dirs = ["../../src/pyfdb"]
autoapi_type = "python"
autoapi_generate_api_docs = True
autoapi_add_toctree_entry = False
autoapi_python_class_content = "class"
autoapi_ignore = [
"*/_internal/*",
]
add_module_names = False
autoapi_keep_files = False
# -- Napoleon settings
napoleon_google = True
templates_path = ["_templates"]
exclude_patterns = ["Thumbs.db", ".DS_Store"]
# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
html_theme = "pydata_sphinx_theme"
# Do not show source link on each page
html_show_sourcelink = False
html_sidebars = {
"**": [],
}
html_theme_options = {
"navbar_align": "left",
"navbar_start": ["navbar-logo"],
"navbar_center": ["navbar-nav"],
"navbar_end": ["navbar-icon-links", "theme-switcher", "version-switcher"],
"navbar_persistent": ["search-button"],
"primary_sidebar_end": [],
# On local builds no version.json is present
"check_switcher": False,
}
html_context = {
# Enable auto detection of light/dark mode
"default_mode": "auto"
}
# -- autosectionlabel configuration ------------------------------------------
autosectionlabel_prefix_document = True
|