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
|
import importlib
import sphinx_rtd_theme
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.intersphinx",
"sphinx.ext.viewcode",
"sphinx.ext.todo",
"sphinx_issues",
]
primary_domain = "py"
default_role = "py:obj"
intersphinx_mapping = {
"python": ("https://python.readthedocs.io/en/latest/", None),
"marshmallow": ("https://marshmallow.readthedocs.io/en/latest/", None),
"webargs": ("https://webargs.readthedocs.io/en/latest/", None),
}
issues_github_path = "marshmallow-code/apispec"
source_suffix = ".rst"
master_doc = "index"
project = "apispec"
copyright = "Steven Loria, Jérôme Lafréchoux, and contributors"
version = release = "6.6.0"
exclude_patterns = ["_build"]
# THEME
html_theme = "sphinx_rtd_theme"
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
|