Updated requirements (for now)

This commit is contained in:
Ilan Steemers
2015-06-17 17:36:14 +02:00
parent 050212e816
commit 219d05fa8a
3 changed files with 6 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
# Django Q
##A multiprocessing task queue application for Django
Currently in the pre-alpha stage.
Currently in the pre-alpha stage and Python 3 only for now.
![Django Q schema](http://i.imgur.com/jYRb1mJ.png)

View File

@@ -1,5 +1,7 @@
jsonpickle
coloredlogs
coloredlogs==1.0.1
django-picklefield==0.3.1
Django==1.8.2
hiredis==0.2.0
humanfriendly==1.27
logutils==0.3.3
redis==2.10.3

View File

@@ -18,7 +18,7 @@ setup(
description='A multiprocessing task queue for Django',
long_description=README,
include_package_data=True,
install_requires=['django>=1.7', 'redis'],
install_requires=['django>=1.7', 'redis', 'coloredlogs', 'django-picklefield'],
test_suite='django_q.tests',
classifiers=[
'Development Status :: 2 - PreAlpha',