3

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

hurikhan77
  • 5,881
  • 3
  • 32
  • 47

1 Answers1

1

Yes.

pip bundle

intends to achieve the same.

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

lprsd
  • 84,407
  • 47
  • 135
  • 168
  • 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 Jul 06 '10 at 13:06