voltron wrote: > I have tested packaging my app according to the documentation. I > tested the egg on another machine and I noticed that it did not > package the public and template folders. Another thing is that it > installed my app under site-packages. > > Does anyone have any experience doing this with Pylons apps? I did not > find anything quickly
If you are using svn, include_package_data=True will include those files. Otherwise you have to use things like package_data or MANIFEST to include those files; there's info in the distutils documentation. If you are using version control other than svn, there might be a plugin to get setuptools to find your files. -- Ian Bicking | [EMAIL PROTECTED] | http://blog.ianbicking.org | Write code, do good | http://topp.openplans.org/careers --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
