add requirements
This commit is contained in:
commit
9de85824d1
5 changed files with 26 additions and 0 deletions
3
requirements.txt
Normal file
3
requirements.txt
Normal 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
10
requirements/base.txt
Normal 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
7
requirements/local.txt
Normal 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
|
3
requirements/production.txt
Normal file
3
requirements/production.txt
Normal 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
3
requirements/test.txt
Normal file
|
@ -0,0 +1,3 @@
|
|||
# Test dependencies go here.
|
||||
-r base.txt
|
||||
coverage==3.7.1
|
Loading…
Reference in a new issue