cookiecutter-django/{{cookiecutter.repo_name}}/requirements/base.txt

40 lines
782 B
Plaintext
Raw Normal View History

2013-08-16 15:35:18 +04:00
# Bleeding edge Django
https://github.com/django/django/archive/1.6c1.tar.gz
2013-08-16 15:35:18 +04:00
2013-09-15 17:02:13 +04:00
# Configuration
django-configurations==0.5.1
django-secure==1.0
2013-09-17 17:11:22 +04:00
django-cache-url==0.6.0
dj-database-url==0.2.2
2013-09-15 17:02:13 +04:00
# Forms
django-braces==1.2.2
2013-09-15 17:02:13 +04:00
django-crispy-forms==1.4.0
2013-08-15 21:47:35 +04:00
django-floppyforms==1.1
2013-09-15 17:02:13 +04:00
# Models
2013-09-22 16:51:26 +04:00
South==0.8.2
2013-09-22 17:03:33 +04:00
# hack so django-model-utils doesn't override Django 1.6b4 install
git+git://github.com/pydanny/django-model-utils@d71bf2db7581d91dcc8e0a66fd4859eb8969d256
2013-09-15 17:02:13 +04:00
# images
2013-08-16 15:35:18 +04:00
Pillow==2.1.0
# For user registration, either via email or social
# Well-built with regular release cycles!
2013-09-15 17:02:13 +04:00
django-allauth==0.13.0
2013-08-15 21:47:35 +04:00
2013-08-27 11:08:52 +04:00
# For the persistance stores
2013-08-16 15:35:18 +04:00
psycopg2==2.5
2013-08-15 21:47:35 +04:00
2013-08-16 15:35:18 +04:00
# Unicode slugification
unicode-slugify==0.1.1
django-autoslug==1.7.1
2013-08-15 21:47:35 +04:00
# Useful things
2013-09-22 16:47:34 +04:00
django-avatar==2.0
2013-08-15 21:47:35 +04:00
2013-08-27 11:08:52 +04:00
# Your custom requirements go here