Files
py-healthchecks.io/docs/conf.py
2024-05-05 13:39:25 -05:00

15 lines
292 B
Python

"""Sphinx configuration."""
from datetime import datetime
project = "Py Healthchecks.Io"
author = "Andrew Herrington"
copyright = f"{datetime.now().year}, {author}"
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.napoleon",
]
autodoc_typehints = "description"
html_theme = "furo"