Files
flucto-heisskleber/docs/conf.py
2023-10-31 14:37:16 +01:00

17 lines
328 B
Python

"""Sphinx configuration."""
project = "glue"
author = "Felix Weiler"
copyright = f"2023, {author}"
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.napoleon",
"sphinx_autodoc_typehints",
]
autodoc_mock_imports = ["RPi.GPIO", "picamera2", "smbus"]
# html_static_path = ["_static"]
html_theme = "sphinx_rtd_theme"