From ee8b1aa7f26f8c423c53b50bc743d8a725bbab5a Mon Sep 17 00:00:00 2001 From: PJ Eby Date: Wed, 23 Mar 2005 00:42:52 +0000 Subject: 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 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') 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'], ) -- cgit v1.2.1