diff options
Diffstat (limited to 'doc/conf.py')
| -rw-r--r-- | doc/conf.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/conf.py b/doc/conf.py index e1a48aa2..e3952a0b 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -6,7 +6,10 @@ import sys, os, re # Add any Sphinx extension module names here, as strings. They can be extensions # coming with Sphinx (named 'sphinx.addons.*') or your custom ones. -extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.todo'] +extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.todo', + 'sphinx.ext.autosummary'] + +extlinks = {'issue': ('http://bugs.python.org/issue', 'issue ')} # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] @@ -71,7 +74,7 @@ latex_logo = '_static/sphinx.png' # Additional stuff for the LaTeX preamble. latex_elements = { - 'fontpkg': '\\usepackage{palatino}' + 'fontpkg': '\\usepackage{palatino}', } # Put TODOs into the output. |
