From 9ce32d32b0b4d62ba844884b436d5a57e5b921cb Mon Sep 17 00:00:00 2001 From: ericholscher Date: Sat, 2 Aug 2014 08:07:57 -0700 Subject: Fix docs to work --- docs/conf.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'docs') diff --git a/docs/conf.py b/docs/conf.py index 9929aaf6..4ab9f41c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -13,6 +13,9 @@ # # All configuration values have a default; values that are commented out # serve to show the default. +import sys, os + +sys.path.append(os.path.abspath('..')) import setup as setup_script @@ -195,3 +198,4 @@ latex_documents = [ # If false, no module index is generated. #latex_use_modindex = True + -- cgit v1.2.1 From 702a87a0a2ab03c376fea01903075c8fed45a8fb Mon Sep 17 00:00:00 2001 From: ericholscher Date: Sat, 2 Aug 2014 15:35:33 +0000 Subject: conf.py edited online with Bitbucket --- docs/conf.py | 1 - 1 file changed, 1 deletion(-) (limited to 'docs') diff --git a/docs/conf.py b/docs/conf.py index 4ab9f41c..faf3a915 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -198,4 +198,3 @@ latex_documents = [ # If false, no module index is generated. #latex_use_modindex = True - -- cgit v1.2.1 From 9fe6b474304a5a679b00d6218f9d9471a2c8a2fd Mon Sep 17 00:00:00 2001 From: ericholscher Date: Sat, 16 Aug 2014 15:52:49 +0000 Subject: Add comment to explain code. --- docs/conf.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'docs') diff --git a/docs/conf.py b/docs/conf.py index faf3a915..203dc93d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -12,9 +12,10 @@ # autogenerated file. # # All configuration values have a default; values that are commented out -# serve to show the default. -import sys, os +# serve to show the default +# Allow Sphinx to find the setup command that is imported below. +import sys, os sys.path.append(os.path.abspath('..')) import setup as setup_script -- cgit v1.2.1 From 5804094016f1b5188c14d1c69fdae7c55f1f242d Mon Sep 17 00:00:00 2001 From: ericholscher Date: Sun, 17 Aug 2014 05:52:57 +0000 Subject: Update conf.py to place it below original docstring. --- docs/conf.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'docs') diff --git a/docs/conf.py b/docs/conf.py index 203dc93d..8be5c3dd 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -14,17 +14,16 @@ # All configuration values have a default; values that are commented out # serve to show the default -# Allow Sphinx to find the setup command that is imported below. +# 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. + +# Allow Sphinx to find the setup command that is imported below, as referenced above. import sys, os sys.path.append(os.path.abspath('..')) import setup as setup_script -# 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.append(os.path.abspath('.')) - # -- General configuration ----------------------------------------------------- # Add any Sphinx extension module names here, as strings. They can be extensions -- cgit v1.2.1