Django project template for Windows Azure, let you deploy Django on Windows Azure in just a few steps.
$ pip install django
$ django-admin.py startproject <project_name> --template=https://github.com/tzangms/django-azure-template/zipball/master
Replace {{ project_name }} in web.config to your own project_name.
Using Windows Azure, your have to install all the dependencies into site-packages directory, you can use pip with -t args to do this. shown as below.
$ pip install django wsgiref -t site-packages
Commit your code include the site-packages directory. and setup the deploy in Windows Azure with any VCS, then you should see your Django project running in a few minutes.