1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
import datetime
import truststore
project = "Truststore"
author = "Seth Michael Larson, David Glick"
copyright = f"{datetime.date.today().year}"
release = version = truststore.__version__
extensions = [
"myst_parser",
"sphinx.ext.intersphinx",
]
html_theme = "furo"
html_context = {
"display_github": True,
"github_user": "sethmlarson",
"github_repo": "truststore",
"github_version": "main",
"conf_py_path": "/docs/source/",
}
intersphinx_mapping = {
"python": ("https://docs.python.org/3", None),
"urllib3": ("https://urllib3.readthedocs.io/en/stable", None),
}
nitpicky = True
|