X-Git-Url: https://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=doc%2Fsource%2Fconf.py;h=baf787e31df7d587fe990fb203b81f8777aba941;hb=13b585b28aaacb1d603c3ae41614bacf613afa14;hp=63ffa74cf3ee48390a75559a91d6002c92e3d55c;hpb=b29d7c33db5a796778ae477329306e4f4531725a;p=dunshire.git diff --git a/doc/source/conf.py b/doc/source/conf.py index 63ffa74..baf787e 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -7,23 +7,19 @@ import shlex # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. -sys.path.insert(0, os.path.abspath('../../src/')) -sys.path.insert(0, os.path.abspath('../../src/dunshire')) +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.autodoc', - 'sphinx.ext.autosummary', 'sphinx.ext.doctest', + 'sphinx.ext.mathjax', 'sphinx.ext.napoleon', - 'sphinx.ext.pngmath', 'sphinx.ext.viewcode', ] -autosummary_generate = True - # Don't automatically test every >>> block in the documentation. This # avoids testing the API docs as part of the documentation build, # which is exactly what we intend, because those are tested as part of