mirror of
https://github.com/andrewthetechie/py-healthchecks.io.git
synced 2025-12-05 17:18:16 +01:00
15 lines
292 B
Python
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"
|