Hi, 2008/10/31 Lukasz Szybalski <[EMAIL PROTECTED]>: > > Hello, > I'm actually working with another project and I was wondering if > anybody has a suggestion on how to automatically download setuptools > if its not available on the system. This could be used with tg as > well. > > What I have tried right now is to add ez_setup.py file to a source > folder and add a line > > import ez_setup > ez_setup.main(['setuptools']) > ...then regular setup.py stuff follows
[...] In setup.py I think you are supposed to use use_setuptools() : from ez_setup import use_setuptools use_setuptools() This will do what you want when typing any setup.py command. Hope this will help... Christophe --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
