-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Have requirements.txt install requirements via setup.py.
- Loading branch information
Showing
1 changed file
with
3 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,3 @@ | ||
Django | ||
# we need South >= 1.0 so that is finds migrations in south_migrations | ||
South>=1.0 | ||
django-crispy-forms | ||
django-nose | ||
django-registration-redux | ||
pillow | ||
pyLibravatar | ||
pydns | ||
pytz | ||
requests | ||
# markdown 2.5 drops support for Python 2.6 | ||
# Django 1.7 doesn't support 2.6 either, so we can drop this restriction | ||
# when we move to Django 1.7 | ||
markdown<2.5 | ||
django-medusa | ||
# markitup 2.2 breaks on python 2 with module level imports, which we | ||
# need to use for markdown, so avoid using that | ||
django-markitup<=2.1,>2.2 | ||
# Our dependencies are all specified in setup.py. | ||
|
||
-e . |