I want to run a django appserver behind apache/fastcgi. That's no problem, django does that out of the box.
I want this appserver to be deployable via setuptools. That is, I will make it as an egg and install it with easy_install. And that part I can also handle, even though setuptools is not a standard complement to a django appserver.
But what I can't figure out is how the dispatch.fcgi would actually call into this my_app.egg to "start" the server process. Has anyone ever run in this config before?