diff options
| author | PJ Eby <distutils-sig@python.org> | 2005-07-06 03:46:16 +0000 |
|---|---|---|
| committer | PJ Eby <distutils-sig@python.org> | 2005-07-06 03:46:16 +0000 |
| commit | e5eac13db392f851f15e014a1c20debb22da89b2 (patch) | |
| tree | 988605e0650c7f86d2712b2dc67994865dacc900 /EasyInstall.txt | |
| parent | 8468e915d354af475ef47363cccafdc9d458b7a8 (diff) | |
| download | python-setuptools-git-e5eac13db392f851f15e014a1c20debb22da89b2.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``.)
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041080
Diffstat (limited to 'EasyInstall.txt')
| -rwxr-xr-x | EasyInstall.txt | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/EasyInstall.txt b/EasyInstall.txt index b1aecf6f..f23a23b8 100755 --- a/EasyInstall.txt +++ b/EasyInstall.txt @@ -482,10 +482,17 @@ Known Issues time out or be missing a file. 0.5a5 + * 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``.) + * Added ``egg_info`` command to ``setuptools``-based packages. This command just creates or updates the "projectname.egg-info" directory, without - building an egg. It's used by the ``bdist_egg`` and ``test`` commands now, - and will be used by the ``develop`` command later on. + building an egg. (It's used by the ``bdist_egg``, ``test``, and ``develop`` + commands.) * Enhanced the ``test`` command so that it doesn't install the package, but instead builds any C extensions in-place, updates the ``.egg-info`` |
