Mercurial > public > queues
view setup.py @ 13:e09cc844ff10
Added zenqueue backend as zenqueued based heavily on a patch by Daniel Lindsley. To use the zenqueued backend you'll need to set QUEUE_BACKEND to zenqueued, and also set QUEUE_ZENQUEUE_CONNECTION. The zenqueued backend defaults to using the client for HTTP but you can use either the HTTP or native method by setting QUEUE_ZENQUEUE_METHOD to http or native. Note that zenqueue does not allow for multiple named queues, so the name argument to the Queue constructor is ignored. Several other options (__len__, delete_queue, and get_list) are not supported by zenqueue.
author | mcroydon |
---|---|
date | Wed, 20 May 2009 19:25:14 +0000 |
parents | 3b0011cd18aa |
children | 1358e3314c88 |
line wrap: on
line source
#!/usr/bin/env python from distutils.core import setup setup(name='queues', version='0.3', description='A lowest-common-denominator API for interacting with lightweight queue services.', author='Matt Croydon', author_email='mcroydon@gmail.com', url='http://code.google.com/p/queues/', packages=['queues', 'queues.backends'], py_modules=['test'], package_dir={'queues': 'queues'}, )