diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2014-03-04 11:45:12 -0800 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2014-03-04 11:45:12 -0800 |
commit | b9cea90581c7bf3b34a12947107a4b2ee456300b (patch) | |
tree | 28f4423caff3b742e09406cdf16fc6f79a69ab0a /sites/docs/conf.py | |
parent | a24ca77636b48f80a4cc93f07e2bb951b4de9ab7 (diff) | |
parent | fac6cde8743d73bfce200062da1bbf5e05a74742 (diff) |
Merge branch '1.12'
Diffstat (limited to 'sites/docs/conf.py')
-rw-r--r-- | sites/docs/conf.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sites/docs/conf.py b/sites/docs/conf.py index 0c7ffe55..619ff816 100644 --- a/sites/docs/conf.py +++ b/sites/docs/conf.py @@ -1,4 +1,16 @@ # Obtain shared config values import os, sys sys.path.append(os.path.abspath('..')) +sys.path.append(os.path.abspath('../..')) from shared_conf import * + +# Enable autodoc, intersphinx +extensions.extend(['sphinx.ext.autodoc', 'sphinx.ext.intersphinx']) + +# Autodoc settings +autodoc_default_flags = ['members', 'special-members'] + +# Intersphinx connection to stdlib +intersphinx_mapping = { + 'python': ('http://docs.python.org/2.6', None), +} |