mirror of
https://github.com/status-im/spiff-arena.git
synced 2025-01-26 01:38:57 +00:00
79e2bb98b7
git-subtree-dir: flask-bpmn git-subtree-split: f3fc539423a3522d142146d2a039c0cd49badaf5
18 lines
361 B
Python
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"
|