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 30 31 32 33 34 35 36 37 38
|
#!/usr/bin/env python3
from importlib.metadata import version as get_version
from packaging.version import parse
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.intersphinx",
"sphinx_autodoc_typehints",
]
templates_path = ["_templates"]
source_suffix = ".rst"
master_doc = "index"
project = "Typeguard"
author = "Alex Grönholm"
copyright = "2015, " + author
v = parse(get_version("typeguard"))
version = v.base_version
release = v.public
language = "en"
exclude_patterns = ["_build"]
pygments_style = "sphinx"
autodoc_default_options = {"members": True}
autodoc_type_aliases = {
"TypeCheckerCallable": "typeguard.TypeCheckerCallable",
"TypeCheckFailCallback": "typeguard.TypeCheckFailCallback",
"TypeCheckLookupCallback": "typeguard.TypeCheckLookupCallback",
}
todo_include_todos = False
html_theme = "sphinx_rtd_theme"
htmlhelp_basename = "typeguarddoc"
intersphinx_mapping = {"python": ("https://docs.python.org/3/", None)}
|