Files
py-healthchecks.io-fork/docs/conf.py
Andrew dd1b4762fd chore: requirement updates (#184)
* chore: requirement updates

* poetry update
* .github/worklows/constraints.txt updated
* docs/requirements.txt updated
* pre-commit hooks updated

* docs: remove sphinx-click

sphinx-click is unused, as we're not using click in this project
2022-07-10 16:57:52 -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"