From 353672d292492446cc0a8f95d2b06caa58965dbe Mon Sep 17 00:00:00 2001 From: Julia Medina Date: Fri, 24 Apr 2015 18:25:47 -0300 Subject: [PATCH] Add autodocs Sphinx extension --- docs/conf.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 2c1935003..2d22c6a64 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,10 @@ sys.path.append(path.join(path.dirname(path.dirname(__file__)), "scrapy")) # Add any Sphinx extension module names here, as strings. They can be extensions # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. -extensions = ['scrapydocs'] +extensions = [ + 'scrapydocs', + 'sphinx.ext.autodoc' +] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates']