This one time, at band camp, Alex Greif wrote:
>
>I am using Pylons 0.8 for my application that is packaged with the
>command:
>python setup.py bdist_egg
>
>In former times when I used subversion the egg contained everything
>fine.
>After removing all .svn folders, besause of a switch to bazaar-ng the
>generated egg is not complete. The components and templates folders are
>missing from the egg.
>
>Is there a way to configure which folders are to be added to the egg?
I had this problem too (I didnt' realise it was setuptools+subversion
magic), so I added some linkes to package_data in setup.py:
package_data={'zookeepr': ['i18n/*/LC_MESSAGES/*.mo',
'templates/autohandler',
'templates/*.myt',
'templates/*/*.myt',
'public/*.css',
'public/*.png',
'public/*.gif']},
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---