Re: conventions for adding pluggable apps to Django

2009-04-21 Thread kRON
I haven't used that many pluggable Django apps, but I'd say it really depends as you go from application to application. The first step is to decide where your pluggables will live. I like to keep pluggables that are used by my project specific apps under %project%.apps.contrib for clarity's sake.

Re: conventions for adding pluggable apps to Django

2009-04-21 Thread Kevin Teague
To answer the question in terms of Python packaging (typically consuming Django apps isn't going to differ from consuming any other python package) ... On Apr 21, 11:44 am, Bryan Wheelock wrote: > I have a question about using Pluggable apps with Django. > > My question is about best practices.

conventions for adding pluggable apps to Django

2009-04-21 Thread Bryan Wheelock
I have a question about using Pluggable apps with Django. My question is about best practices. If you have pluggable apps, do you put the entire app ( e.g. django-survey or django-ads ) into a subdirectory and then add each app individually to the python path? $ ls apps django-survey django-ads