aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2005-04-03 17:23:38 +0000
committerPJ Eby <distutils-sig@python.org>2005-04-03 17:23:38 +0000
commitac8607b21c377290cfaff30669d948b8d27eb158 (patch)
treed0993d660d3e42cf20178051fab8a168a89a4983 /setup.py
parent28db19795dbc9890003406a7ac8f6ca71ff7c03c (diff)
downloadexternal_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-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 9d6033d8..614e0fd1 100755
--- a/setup.py
+++ b/setup.py
@@ -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'],
)