diff options
author | PJ Eby <distutils-sig@python.org> | 2005-03-23 00:42:52 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2005-03-23 00:42:52 +0000 |
commit | ee8b1aa7f26f8c423c53b50bc743d8a725bbab5a (patch) | |
tree | 43ed1dec11ffa2248d374c7c7a6d7c5e7b7b43cd /setup.py | |
parent | 5a50fc1e142970cb668b48058fdcd88690991cae (diff) | |
download | python-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-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'], + py_modules = ['setuptools_boot', 'pkg_resources'], ) |