Files
py-healthchecks.io-fork/docs/conf.py
2021-12-06 16:49:20 -06:00

15 lines
311 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",
"sphinx_click",
]
autodoc_typehints = "description"
html_theme = "furo"