spiff-arena/docs/conf.py
Jon Herron 79e2bb98b7 Squashed 'flask-bpmn/' content from commit f3fc5394
git-subtree-dir: flask-bpmn
git-subtree-split: f3fc539423a3522d142146d2a039c0cd49badaf5
2022-10-12 10:23:45 -04:00

18 lines
361 B
Python

"""Sphinx configuration."""
from datetime import datetime
project = "Flask Bpmn"
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"