aboutsummaryrefslogtreecommitdiff
path: root/docs/conf.py
diff options
context:
space:
mode:
authorCody Logan <clpo13@gmail.com>2020-01-08 10:16:58 -0800
committerCody Logan <clpo13@gmail.com>2020-01-08 10:16:58 -0800
commit21d800b1bfec1b3ca2fbd4cce8b8ade507c6382a (patch)
tree35a1695908690b1048fa180f07f62abdc702b41a /docs/conf.py
parentf599b85ba5a5fe7123e0d77bf7b9f6c738471bc8 (diff)
downloadalphanum-0.2.0.tar.gz
alphanum-0.2.0.zip
Link Python stdlib docsv0.2.0
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 7d685d9..f8370f3 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -22,7 +22,7 @@ copyright = '2020, Cody Logan'
author = 'Cody Logan'
# The full version, including alpha/beta/rc tags
-release = '0.2.0.dev1'
+release = '0.2.0'
# -- General configuration ---------------------------------------------------
@@ -31,7 +31,8 @@ release = '0.2.0.dev1'
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
- 'sphinxcontrib.napoleon'
+ 'sphinx.ext.napoleon',
+ 'sphinx.ext.intersphinx',
]
# Add any paths that contain templates here, relative to this directory.
@@ -42,6 +43,10 @@ templates_path = ['_templates']
# This pattern also affects html_static_path and html_extra_path.
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
+intersphinx_mapping = {
+ 'python': ('https://docs.python.org/3', None),
+}
+
# -- Options for HTML output -------------------------------------------------