Here it is: # cp -Rp helloworld.egg-info helloworld.egg-info.orig # python setup.py egg_info
The required version of setuptools (>=0.6c6) is not available, and can't be installed while this script is running. Please install a more recent version first. (Currently using setuptools 0.6c5 (/usr/lib/python2.4/site-packages/setuptools-0.6c5-py2.4.egg)) # easy_install -U setuptools (this upgrades fine) # python setup.py egg_info (now it works) # paster serve --reload development.ini (now it works too) # diff -ruN helloworld.egg-info.orig helloworld.egg-info diff -ruN helloworld.egg-info.orig/dependency_links.txt helloworld.egg-info/dependency_links.txt --- helloworld.egg-info.orig/dependency_links.txt 1969-12-31 18:00:00.000000000 -0600 +++ helloworld.egg-info/dependency_links.txt 2007-07-23 21:12:59.000000000 -0500 @@ -0,0 +1 @@ + diff -ruN helloworld.egg-info.orig/entry_points.txt helloworld.egg-info/entry_points.txt --- helloworld.egg-info.orig/entry_points.txt 1969-12-31 18:00:00.000000000 -0600 +++ helloworld.egg-info/entry_points.txt 2007-07-23 21:12:59.000000000 -0500 @@ -0,0 +1,6 @@ + + [paste.app_factory] + main=helloworld:make_app + [paste.app_install] + main=pylons.util:PylonsInstaller + \ No newline at end of file diff -ruN helloworld.egg-info.orig/PKG-INFO helloworld.egg-info/PKG-INFO --- helloworld.egg-info.orig/PKG-INFO 1969-12-31 18:00:00.000000000 -0600 +++ helloworld.egg-info/PKG-INFO 2007-07-23 21:12:59.000000000 -0500 @@ -0,0 +1,10 @@ +Metadata-Version: 1.0 +Name: helloworld +Version: 0.0.0dev +Summary: UNKNOWN +Home-page: UNKNOWN +Author: UNKNOWN +Author-email: UNKNOWN +License: UNKNOWN +Description: UNKNOWN +Platform: UNKNOWN diff -ruN helloworld.egg-info.orig/requires.txt helloworld.egg-info/requires.txt --- helloworld.egg-info.orig/requires.txt 1969-12-31 18:00:00.000000000 -0600 +++ helloworld.egg-info/requires.txt 2007-07-23 21:12:59.000000000 -0500 @@ -0,0 +1 @@ +Pylons>=0.9.5 \ No newline at end of file diff -ruN helloworld.egg-info.orig/SOURCES.txt helloworld.egg-info/SOURCES.txt --- helloworld.egg-info.orig/SOURCES.txt 1969-12-31 18:00:00.000000000 -0600 +++ helloworld.egg-info/SOURCES.txt 2007-07-23 21:12:59.000000000 -0500 @@ -0,0 +1,28 @@ +README.txt +setup.cfg +setup.py +helloworld/__init__.py +helloworld/websetup.py +helloworld.egg-info/PKG-INFO +helloworld.egg-info/SOURCES.txt +helloworld.egg-info/dependency_links.txt +helloworld.egg-info/entry_points.txt +helloworld.egg-info/paste_deploy_config.ini_tmpl +helloworld.egg-info/paster_plugins.txt +helloworld.egg-info/requires.txt +helloworld.egg-info/top_level.txt +helloworld/config/__init__.py +helloworld/config/environment.py +helloworld/config/middleware.py +helloworld/config/routing.py +helloworld/controllers/__init__.py +helloworld/controllers/error.py +helloworld/controllers/template.py +helloworld/lib/__init__.py +helloworld/lib/app_globals.py +helloworld/lib/base.py +helloworld/lib/helpers.py +helloworld/model/__init__.py +helloworld/tests/__init__.py +helloworld/tests/test_models.py +helloworld/tests/functional/__init__.py diff -ruN helloworld.egg-info.orig/top_level.txt helloworld.egg-info/top_level.txt --- helloworld.egg-info.orig/top_level.txt 1969-12-31 18:00:00.000000000 -0600 +++ helloworld.egg-info/top_level.txt 2007-07-23 21:12:59.000000000 -0500 @@ -0,0 +1 @@ +helloworld --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en -~----------~----~----~----~------~----~------~--~---
