views:

35

answers:

1

Is there and equivalent in Django to Rails' freezing and unpacking mechanism to a vendor directory so that an application becomes self-contained?

+1  A: 

Yes.

pip bundle

intends to achieve the same.

http://pip.openplans.org/#bundles

Lakshman Prasad
Will that also bundle django itself, together with the application, and executable on the vhost with other django "neighbours" using other versions of django?
hurikhan77