diff options
| -rw-r--r-- | docs/conf.py | 4 | ||||
| -rw-r--r-- | setuptools.egg-info/entry_points.txt | 2 |
2 files changed, 5 insertions, 1 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 + diff --git a/setuptools.egg-info/entry_points.txt b/setuptools.egg-info/entry_points.txt index de842da8..528f38e7 100644 --- a/setuptools.egg-info/entry_points.txt +++ b/setuptools.egg-info/entry_points.txt @@ -1,6 +1,6 @@ [console_scripts] easy_install = setuptools.command.easy_install:main -easy_install-3.4 = setuptools.command.easy_install:main +easy_install-2.7 = setuptools.command.easy_install:main [distutils.commands] alias = setuptools.command.alias:alias |
