Files
conference-room-booking-system/backend/docs/conf.py
2025-08-20 10:15:21 -04:00

13 lines
264 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"