project setup

This commit is contained in:
Jan Dittberner 2015-01-26 16:40:03 +01:00
parent 95c6c9c516
commit ddd6287f03
17 changed files with 952 additions and 0 deletions

7
requirements/base.txt Normal file
View file

@ -0,0 +1,7 @@
amqp==1.4.6
bpython==0.13.1
anyjson==0.3.3
billiard==3.3.0.19
celery==3.1.17
kombu==3.0.24
pytz==2014.10

6
requirements/local.txt Normal file
View file

@ -0,0 +1,6 @@
# Local development dependencies go here
-r base.txt
coverage==3.7.1
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