summaryrefslogtreecommitdiff
path: root/setuptools/command/__init__.py
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2005-07-06 03:46:16 +0000
committerPJ Eby <distutils-sig@python.org>2005-07-06 03:46:16 +0000
commit74de92ae02ae73e2f7c883c162cc792cd8a7c213 (patch)
tree988605e0650c7f86d2712b2dc67994865dacc900 /setuptools/command/__init__.py
parent1ce898ea2e7e7cda09194ad039d2ceab6a767b92 (diff)
downloadpython-setuptools-bitbucket-74de92ae02ae73e2f7c883c162cc792cd8a7c213.tar.gz
Added ``develop`` command to ``setuptools``-based packages. This command
installs an ``.egg-link`` pointing to the package's source directory, and script wrappers that ``execfile()`` the source versions of the package's scripts. This lets you put your development checkout(s) on sys.path without having to actually install them. (To uninstall the link, use use ``setup.py develop --uninstall``.)
Diffstat (limited to 'setuptools/command/__init__.py')
-rw-r--r--setuptools/command/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/__init__.py b/setuptools/command/__init__.py
index f9c5b19b..bc5bc878 100644
--- a/setuptools/command/__init__.py
+++ b/setuptools/command/__init__.py
@@ -1,6 +1,6 @@
import distutils.command
-__all__ = ['test', 'depends', 'bdist_egg']
+__all__ = ['test', 'develop', 'bdist_egg']
# Make our commands available as though they were part of the distutils