diff --git a/docs/conf.py b/docs/conf.py index 018f77c3..f310c444 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -29,7 +29,8 @@ 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'] +extensions = ['sphinx.ext.autodoc', + 'sphinxcontrib.disqus'] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] @@ -140,7 +141,7 @@ html_theme = 'default' # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = [] +html_static_path = ['_static'] # Add any extra paths that contain custom files (such as robots.txt or # .htaccess) here, relative to this directory. These files are copied @@ -298,3 +299,5 @@ texinfo_documents = [ #texinfo_no_detailmenu = False autodoc_member_order = 'bysource' + +disqus_shortname = 'python-dependency-injector'