I tried running:
$ git push heroku master
-----
Total 7121 (delta 2300), reused 6879 (delta 2228)
! Heroku push rejected, no Cedar-supported app de
Heroku needs a requirements.txt file, which helps Heroku know what dependencies need to be installed for your Django project. You can use a tool generate your requirements.txt file.
Run in command line
pip freeze > requirements.txt
which will create a requirements.txt file with all your installed packages, such as Django, django-registration, etc...
This link may be helpful: http://tutorial.djangogirls.org/deploy/README.html