2022-05-13 17:42:42 +00:00
|
|
|
"""Sphinx configuration."""
|
|
|
|
from datetime import datetime
|
|
|
|
|
|
|
|
|
2022-06-01 15:17:25 +00:00
|
|
|
project = "Spiffworkflow Backend"
|
2022-05-13 17:42:42 +00:00
|
|
|
author = "Sartography"
|
|
|
|
copyright = f"{datetime.now().year}, {author}"
|
|
|
|
extensions = [
|
|
|
|
"sphinx.ext.napoleon",
|
|
|
|
"autoapi.extension",
|
|
|
|
"sphinx_click",
|
|
|
|
]
|
|
|
|
|
|
|
|
# https://github.com/readthedocs/sphinx-autoapi
|
|
|
|
autoapi_type = "python"
|
|
|
|
autoapi_dirs = ["../src"]
|
|
|
|
html_theme = "furo"
|