diff --git a/README.md b/README.md index 7ea4a35..99d3679 100644 --- a/README.md +++ b/README.md @@ -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) \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 0fed12b..723ef2c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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 diff --git a/setup.py b/setup.py index 67a8b74..ff616a2 100644 --- a/setup.py +++ b/setup.py @@ -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',