mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-06 00:48:26 -04:00
14 lines
265 B
Python
14 lines
265 B
Python
"""Sphinx configuration."""
|
|
|
|
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"
|