2022-05-13 13:42:42 -04:00

18 lines
372 B
Python

"""Sphinx configuration."""
from datetime import datetime
project = "Spiff Workflow Webapp"
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"