annotate setup.py @ 18:9e41be2e6776

Updated version to 0.5 which includes a dummy backend useful for testing, fixed a bug in delete_queue in the redis backend, and updated tests to deal with some backends returning unicode and some not.
author mcroydon
date Wed, 16 Sep 2009 14:39:50 +0000
parents 1358e3314c88
children 363a3d8bd466
rev   line source
mcroydon@1 1 #!/usr/bin/env python
mcroydon@1 2
mcroydon@1 3 from distutils.core import setup
mcroydon@9 4
mcroydon@1 5 setup(name='queues',
mcroydon@18 6 version='0.5',
mcroydon@1 7 description='A lowest-common-denominator API for interacting with lightweight queue services.',
mcroydon@1 8 author='Matt Croydon',
mcroydon@1 9 author_email='mcroydon@gmail.com',
mcroydon@5 10 url='http://code.google.com/p/queues/',
mcroydon@1 11 packages=['queues', 'queues.backends'],
mcroydon@3 12 py_modules=['test'],
mcroydon@1 13 package_dir={'queues': 'queues'},
mcroydon@1 14 )