comparison 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
comparison
equal deleted inserted replaced
17:a0d3e275c885 18:9e41be2e6776
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 2
3 from distutils.core import setup 3 from distutils.core import setup
4 4
5 setup(name='queues', 5 setup(name='queues',
6 version='0.4', 6 version='0.5',
7 description='A lowest-common-denominator API for interacting with lightweight queue services.', 7 description='A lowest-common-denominator API for interacting with lightweight queue services.',
8 author='Matt Croydon', 8 author='Matt Croydon',
9 author_email='mcroydon@gmail.com', 9 author_email='mcroydon@gmail.com',
10 url='http://code.google.com/p/queues/', 10 url='http://code.google.com/p/queues/',
11 packages=['queues', 'queues.backends'], 11 packages=['queues', 'queues.backends'],