diff options
author | ericholscher <none@none> | 2014-08-02 08:07:57 -0700 |
---|---|---|
committer | ericholscher <none@none> | 2014-08-02 08:07:57 -0700 |
commit | 9ce32d32b0b4d62ba844884b436d5a57e5b921cb (patch) | |
tree | 4b6de9b2db5e2dae7fa03dbab5ed252084390566 /docs/conf.py | |
parent | 0341e4d0b24162ec6a4280c99bafdf8b7bcab324 (diff) | |
download | external_python_setuptools-9ce32d32b0b4d62ba844884b436d5a57e5b921cb.tar.gz external_python_setuptools-9ce32d32b0b4d62ba844884b436d5a57e5b921cb.tar.bz2 external_python_setuptools-9ce32d32b0b4d62ba844884b436d5a57e5b921cb.zip |
Fix docs to work
Diffstat (limited to 'docs/conf.py')
-rw-r--r-- | docs/conf.py | 4 |
1 files changed, 4 insertions, 0 deletions
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 + |