This commit is contained in:
Ilan Steemers
2015-09-16 18:50:33 +02:00
parent 57169a7ab5
commit 4d7416914c
3 changed files with 7 additions and 6 deletions
+1 -1
View File
@@ -9,6 +9,6 @@ from .models import Task, Schedule, Success, Failure
from .cluster import Cluster
from .status import Stat
VERSION = (0, 7, 0)
VERSION = (0, 7, 1)
default_app_config = 'django_q.apps.DjangoQConfig'
+1 -1
View File
@@ -72,7 +72,7 @@ author = 'Ilan Steemers'
# The short X.Y version.
version = '0.7'
# The full version, including alpha/beta/rc tags.
release = '0.7.0'
release = '0.7.1'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
+5 -4
View File
@@ -26,15 +26,15 @@ class PyTest(Command):
setup(
name='django-q',
version='0.7.0',
version='0.7.1',
author='Ilan Steemers',
author_email='koed00@gmail.com',
keywords='django task queue worker redis disque multiprocessing',
keywords='django distributed task queue worker redis disque ironmq sqs orm multiprocessing',
packages=['django_q'],
include_package_data=True,
url='https://django-q.readthedocs.org',
license='MIT',
description='A multiprocessing task queue for Django',
description='A multiprocessing distributed task queue for Django',
long_description=README,
install_requires=['django>=1.7', 'django-picklefield', 'blessed', 'arrow', 'future'],
test_requires=['pytest', 'pytest-django', ],
@@ -45,7 +45,8 @@ setup(
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Operating System :: POSIX',
'Operating System :: MacOS',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',