summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2005-03-23 00:42:52 +0000
committerPJ Eby <distutils-sig@python.org>2005-03-23 00:42:52 +0000
commitee8b1aa7f26f8c423c53b50bc743d8a725bbab5a (patch)
tree43ed1dec11ffa2248d374c7c7a6d7c5e7b7b43cd /setup.py
parent5a50fc1e142970cb668b48058fdcd88690991cae (diff)
downloadpython-setuptools-git-ee8b1aa7f26f8c423c53b50bc743d8a725bbab5a.tar.gz
Add a working pkg_resources implementation that handles extraction and
basic support for non-egg resources. Still a lot to do, but this version is capable of not only extracting and running C extensions, it can even find its own runtime (pkg_resources) if it's included in the egg. --HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4040994
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 7925a9df..9d6033d8 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'],
+ py_modules = ['setuptools_boot', 'pkg_resources'],
)