summaryrefslogtreecommitdiff
path: root/docs/conf.py
diff options
context:
space:
mode:
authorKenneth Reitz <me@kennethreitz.com>2014-01-08 13:53:23 -0500
committerKenneth Reitz <me@kennethreitz.com>2014-01-08 13:53:23 -0500
commitdf1c2335c82165b961b8a0361d0176cdb298e513 (patch)
tree7fcf397321be4a85ad4a757751568a4082b02305 /docs/conf.py
parent1500632b602be698bfce682daeb01a2d64fc2d39 (diff)
parentb17cad65cf27646f0680954914ab31abd4f626c9 (diff)
downloadpython-requests-fix-pickling-adapters.tar.gz
Merge branch 'master' into fix-pickling-adaptersfix-pickling-adapters
Conflicts: AUTHORS.rst
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 f7dcafc1..4521eed4 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -27,7 +27,10 @@ from requests import __version__
# Add any Sphinx extension module names here, as strings. They can be extensions
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
-extensions = ['sphinx.ext.autodoc']
+extensions = [
+ 'sphinx.ext.autodoc',
+ 'sphinx.ext.intersphinx',
+]
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
@@ -43,7 +46,7 @@ master_doc = 'index'
# General information about the project.
project = u'Requests'
-copyright = u'2013. A <a href="http://kennethreitz.com/pages/open-projects.html">Kenneth Reitz</a> Project'
+copyright = u'2014. A <a href="http://kennethreitz.com/pages/open-projects.html">Kenneth Reitz</a> Project'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
@@ -241,3 +244,5 @@ texinfo_appendices = []
sys.path.append(os.path.abspath('_themes'))
html_theme_path = ['_themes']
html_theme = 'kr'
+
+intersphinx_mapping = {'urllib3': ('http://urllib3.readthedocs.org/en/latest', None)}