amqtt/docs/conf.py

23 wiersze
403 B
Python
Czysty Zwykły widok Historia

2015-11-01 13:39:46 +00:00
import os
import sys
import datetime
2015-11-01 13:39:46 +00:00
sys.path.insert(0, os.path.abspath(".."))
2015-11-01 13:39:46 +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 = [
"myst_parser",
"sphinx.ext.autodoc",
"sphinx.ext.napoleon",
"sphinx_autodoc_typehints",
2015-11-05 17:49:01 +00:00
]
2015-11-01 13:39:46 +00:00
templates_path = ["_templates"]
exclude_patterns = []
2015-11-01 13:39:46 +00:00
html_theme = "furo"
html_static_path = ["_static"]