mirror of
https://github.com/OMGeeky/flucto-heisskleber.git
synced 2025-12-27 23:08:08 +01:00
13 lines
309 B
Python
13 lines
309 B
Python
"""Sphinx configuration."""
|
|
project = "Heisskleber"
|
|
author = "Felix Weiler"
|
|
copyright = "2023, Felix Weiler"
|
|
extensions = [
|
|
"sphinx.ext.autodoc",
|
|
"sphinx.ext.napoleon",
|
|
"myst_parser",
|
|
] # , "autodoc2"
|
|
# autodoc2_packages = ["../heisskleber"]
|
|
autodoc_typehints = "description"
|
|
html_theme = "furo"
|