Adam Jones wrote: > IMO anyone who > deletes files without knowing what they are needs that kind of learning > experience anyways.
I agree :-) I've seen that you put this recipe in the official docs. Here's a few remarks and questions: - The setup.py snippet in the docs is missing the end quotation marks. - If you add the "entry_points" argument to setup() you'll probably want to remove the "scripts" argument, don't you? - For development you'll still want a sample-start.py script that just has: #!/usr/bin/env python from sample.commands import start start() or is there a way to use the entry point when the egg is not installed? - minor niggling: the comment in the start function should say "look in the current directory" instead of "look in this directory". Chris --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" 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?hl=en -~----------~----~----~----~------~----~------~--~---

