define requirements

This commit is contained in:
Jan Dittberner 2014-12-25 15:03:56 +01:00
parent 5c7ea9aa2a
commit ecc4d138b0
5 changed files with 26 additions and 0 deletions

3
requirements.txt Normal file
View File

@ -0,0 +1,3 @@
# This file is here because many Platforms as a Service look for
# requirements.txt in the root directory of a project.
-r requirements/production.txt

10
requirements/base.txt Normal file
View File

@ -0,0 +1,10 @@
Django==1.7.1
amqp==1.4.6
bpython==0.13.1
anyjson==0.3.3
argparse==1.2.1
billiard==3.3.0.19
celery==3.1.17
kombu==3.0.24
pytz==2014.10
wsgiref==0.1.2

7
requirements/local.txt Normal file
View File

@ -0,0 +1,7 @@
# Local development dependencies go here
-r base.txt
coverage==3.7.1
django-debug-toolbar==1.2.2
Sphinx==1.2.3
sqlparse==0.1.14
releases==0.7.0

View File

@ -0,0 +1,3 @@
# Pro-tip: Try not to put anything here. There should be no dependency in
# production that isn't in development.
-r base.txt

3
requirements/test.txt Normal file
View File

@ -0,0 +1,3 @@
# Test dependencies go here.
-r base.txt
coverage==3.7.1