>
> What approaches have been popular for deploying projects and applications
> with 3rd party python modules (code usually found in site-packages).  Should
> the packages always be installed when possible or is it acceptable within
> the community to have a "lib" directory within a application or project that
> will contain 3rd party libraries.
>
> e.g. from myapp.lib.boto.s3 import Connection
>
I think it would be better to do from 'boto.s3 import Connection'


> This would have the benefit of maintaining a specific version of the
> library across servers and decrease requirements during deployment, but I
> not aware of what downsides there might be.
>

I would consider this a good reference:
http://svn.pinaxproject.com/pinax/trunk/

Take a special look at the modifications done to manage.py

Ariel.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to