2025-08-20 10:15:21 -04:00
|
|
|
"""Sphinx configuration."""
|
2025-08-25 21:53:47 -04:00
|
|
|
|
2025-08-20 10:15:21 -04:00
|
|
|
project = "Backend"
|
|
|
|
|
author = "Cliff Hill"
|
|
|
|
|
copyright = "2025, Cliff Hill"
|
|
|
|
|
extensions = [
|
|
|
|
|
"sphinx.ext.autodoc",
|
|
|
|
|
"sphinx.ext.napoleon",
|
|
|
|
|
"sphinx_click",
|
|
|
|
|
"myst_parser",
|
|
|
|
|
]
|
|
|
|
|
autodoc_typehints = "description"
|
|
|
|
|
html_theme = "furo"
|