diff options
author | Ashley Whetter <ashley@awhetter.co.uk> | 2017-10-15 21:25:40 -0700 |
---|---|---|
committer | Ashley Whetter <AWhetter@users.noreply.github.com> | 2017-11-05 12:18:24 -0800 |
commit | 206b4f4494e4ac4f5fe98a85381c63da24901970 (patch) | |
tree | f6e5b7ae989dc1d5b9224f3fd33071f4c941f5be /doc/conf.py | |
parent | d86cbd38b9e614948796c4121f1c43cb44bdb0a8 (diff) | |
download | astroid-git-206b4f4494e4ac4f5fe98a85381c63da24901970.tar.gz |
Public facing node documentation
Diffstat (limited to 'doc/conf.py')
-rw-r--r-- | doc/conf.py | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/doc/conf.py b/doc/conf.py index 4164f7df..e054073d 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -25,7 +25,14 @@ sys.path.insert(0, os.path.abspath('../../')) # 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.doctest', 'sphinx.ext.intersphinx', 'sphinx.ext.todo', 'sphinx.ext.viewcode'] +extensions = [ + 'sphinx.ext.autodoc', + 'sphinx.ext.autosummary', + 'sphinx.ext.doctest', + 'sphinx.ext.intersphinx', + 'sphinx.ext.todo', + 'sphinx.ext.viewcode', +] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] @@ -219,3 +226,9 @@ man_pages = [ ('index', 'astroid', u'Astroid Documentation', [u'Logilab, PyCQA and contributors'], 1) ] + +autodoc_default_flags = ['members', 'undoc-members', 'show-inheritance'] +intersphinx_mapping = { + 'green_tree_snakes': + ('http://greentreesnakes.readthedocs.io/en/latest/', 'ast_objects.inv'), +} |