diff options
author | PJ Eby <distutils-sig@python.org> | 2005-04-03 17:23:38 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-04-03 17:23:38 +0000 |
commit | ac8607b21c377290cfaff30669d948b8d27eb158 (patch) | |
tree | d0993d660d3e42cf20178051fab8a168a89a4983 /setup.py | |
parent | 28db19795dbc9890003406a7ac8f6ca71ff7c03c (diff) | |
download | external_python_setuptools-ac8607b21c377290cfaff30669d948b8d27eb158.tar.gz external_python_setuptools-ac8607b21c377290cfaff30669d948b8d27eb158.tar.bz2 external_python_setuptools-ac8607b21c377290cfaff30669d948b8d27eb158.zip |
Remove setuptools_boot.py, as it can now be trivially replaced by including
a setuptools .egg file in your source distribution, and adding it to
sys.path in your setup.py.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041003
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,6 +22,6 @@ setup( Require('PyUnit', None, 'unittest', "http://pyunit.sf.net/"), ], packages = find_packages(), - py_modules = ['setuptools_boot', 'pkg_resources'], + py_modules = ['pkg_resources'], ) |