2015-11-01 13:39:46 +00:00
|
|
|
import os
|
2025-05-20 23:40:56 +00:00
|
|
|
import sys
|
|
|
|
import datetime
|
2015-11-01 13:39:46 +00:00
|
|
|
|
2025-05-20 23:40:56 +00:00
|
|
|
sys.path.insert(0, os.path.abspath(".."))
|
2015-11-01 13:39:46 +00:00
|
|
|
|
2025-05-20 23:40:56 +00:00
|
|
|
project = "aMQTT"
|
|
|
|
author = "Your Name"
|
|
|
|
copyright = f"{datetime.date.today().year}, {author}"
|
2015-11-01 13:39:46 +00:00
|
|
|
|
2015-11-05 17:49:01 +00:00
|
|
|
extensions = [
|
2025-05-20 23:40:56 +00:00
|
|
|
"myst_parser",
|
2021-03-14 21:16:51 +00:00
|
|
|
"sphinx.ext.autodoc",
|
2025-05-20 23:40:56 +00:00
|
|
|
"sphinx.ext.napoleon",
|
|
|
|
"sphinx_autodoc_typehints",
|
2015-11-05 17:49:01 +00:00
|
|
|
]
|
2015-11-01 13:39:46 +00:00
|
|
|
|
2021-03-14 21:16:51 +00:00
|
|
|
templates_path = ["_templates"]
|
2025-05-20 23:40:56 +00:00
|
|
|
exclude_patterns = []
|
2015-11-01 13:39:46 +00:00
|
|
|
|
2025-05-20 23:40:56 +00:00
|
|
|
html_theme = "furo"
|
2021-03-14 21:16:51 +00:00
|
|
|
html_static_path = ["_static"]
|