diff options
| author | PJ Eby <distutils-sig@python.org> | 2005-07-06 02:10:48 +0000 |
|---|---|---|
| committer | PJ Eby <distutils-sig@python.org> | 2005-07-06 02:10:48 +0000 |
| commit | 8468e915d354af475ef47363cccafdc9d458b7a8 (patch) | |
| tree | 1c7fa4ed785bcf70d5ea350280017ce93e0c7ae6 /setup.py | |
| parent | 3686c4d8453202853aa670f2693c7594db179c64 (diff) | |
| download | python-setuptools-git-8468e915d354af475ef47363cccafdc9d458b7a8.tar.gz | |
Made ``easy_install`` a standard ``setuptools`` command, moving it from
the ``easy_install`` module to ``setuptools.command.easy_install``. Note
that if you were importing or extending it, you must now change your
imports accordingly. ``easy_install.py`` is still installed as a script,
but not as a module.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041079
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -40,7 +40,7 @@ setup( packages = find_packages(), - py_modules = ['pkg_resources', 'easy_install'], + py_modules = ['pkg_resources'], scripts = ['easy_install.py'], classifiers = [f.strip() for f in """ |
