Files
py-healthchecks.io/docs/conf.py
Andrew Herrington 4ca01eaf0c Revert "chore: ci fixups and poetry update"
This reverts commit d0b986025e.
2024-05-05 13:02:14 -05:00

14 lines
291 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"