summaryrefslogtreecommitdiff
path: root/docs/conf.py
diff options
context:
space:
mode:
authorArmin Ronacher <armin.ronacher@active-4.com>2014-04-26 14:40:01 +0200
committerArmin Ronacher <armin.ronacher@active-4.com>2014-04-26 14:40:01 +0200
commit0a446700e1f0a2355bc3e17ae7d117d893b92e1c (patch)
tree6b5ef7add732ae8bfc2d2098dce8f8e3cdcdaa15 /docs/conf.py
parent87adb713f5f99b93669211204c8406378a1e0a91 (diff)
downloadclick-0a446700e1f0a2355bc3e17ae7d117d893b92e1c.tar.gz
Make documentation invoke click and fix a bunch of issues
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/conf.py b/docs/conf.py
index a4de909..08c31b1 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -18,6 +18,7 @@ import sys, os
# documentation root, use os.path.abspath to make it absolute, like shown here.
sys.path.append(os.path.abspath('_themes'))
sys.path.append(os.path.abspath('..'))
+sys.path.append(os.path.abspath('.'))
# -- General configuration -----------------------------------------------------
@@ -26,7 +27,8 @@ sys.path.append(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.intersphinx']
+extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx',
+ 'clickdoctools']
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']