Florent Aide wrote: > Hi all, > > a few days ago Graham posted a really interesting mail about the > tgsetup script and its failures: > > http://groups.google.com/group/turbogears/browse_thread/thread/5de762aa37455c7/d010b45cabae7cff?lnk=gst&q=tgsetup#d010b45cabae7cff > same in tiny format: http://tinyurl.com/27b8ef > > I do have some concerns about tgsetup: > - First is is not properly in the svn since it is maintained in the > website instead of being part of the source code of TG. > - It is not really maintained and I'd like to have someone help us > on this particular point. > - I'd like to be able to provide a real off-line installation > archive that would ensure that we can install TG and all its > dependencies without any access to the net. This could become a > project on its own but could have real benefits. > - I feel we really need to fix tgsetup to remove all objections > raised by Graham or we must remove tgsetup alltogether and ensure > easy_install will work. At the moment easy_install works better than > tgsetup even if not perfectly.
There's a command in buildutils, "python setup.py bundle", which tries to collect all the eggs based on the requirements of a package. This might help you in collecting the eggs, or at least provide a starting point. You can get this version of buildutils from hg here: https://www.knowledgetap.com/hg/buildutils/ There's also some hooks in virtualenv so that you could create single Python script that creates a virtualenv then populates it with the packages you want. There's some examples on the PyPI page for virtualenv. -- Ian Bicking : [EMAIL PROTECTED] : http://blog.ianbicking.org --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears Trunk" 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/turbogears-trunk?hl=en -~----------~----~----~----~------~----~------~--~---
