On 10/11/05, Ian Bicking <[EMAIL PROTECTED]> wrote: > * easily installable. easy_install being a good way to do that. This > means each app goes in its own package with a setup.py file. This isn't > absolutely necessary, but packaging each app is generally good for > deployment.
Definetly. And with #584 it would be a lot closer to Just Working(tm). Django should also load SQL-scripts from Eggs when installing applications, but that's all I can see missing. > * easy to build a WSGI app It is. import django.core.handlers.wsgi app = django.core.handlers.wsgi.WSGIHandler() Because of the magic Django does with settings, there can only ever be one instance per Python process... Unless I'm missing something. /s