diff options
Diffstat (limited to 'doc/conf.py')
-rw-r--r-- | doc/conf.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/conf.py b/doc/conf.py index 84aae9ea..b89bd7bd 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -324,3 +324,13 @@ epub_exclude_files = ["search.html"] # If false, no index is generated. # epub_use_index = True + +intersphinx_mapping = { + "python": ("https://docs.python.org/3", None), + "chardet": ("https://chardet.readthedocs.io/en/latest", None), + "lazy-object-proxy": ("https://python-lazy-object-proxy.readthedocs.io/en/latest", None), + "setuptools": ("https://setuptools.pypa.io/en/latest", None), +} +intersphinx_mapping.update( + (x, (f"https://pkgcore.github.io/{x}", None)) for x in ("pkgcore snakeoil").split() +) |