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

41 lines
888 B
Plaintext
Raw Normal View History

2013-08-16 15:35:18 +04:00
# Bleeding edge Django
2013-08-16 15:04:55 +04:00
https://github.com/django/django/archive/1.6b1.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
# 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
django-model-utils==1.5.0
# 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
# There are edge cases for South with Django 1.5+ that haven't been addressed yet.
# South==0.8.1
https://bitbucket.org/andrewgodwin/south/get/59f6bae8b1a501ca14a5f23f8b11c44c42f33147.zip
# Useful things
2013-08-16 15:04:55 +04:00
# django-avatar that work with Django 1.5+
2013-08-18 11:44:26 +04:00
git+git://github.com/jezdez/django-avatar@6393d25166a6c2d2df0bd28e19f161fac2bb1166
2013-08-15 21:47:35 +04:00
2013-08-27 11:08:52 +04:00
# Your custom requirements go here