view 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
line wrap: on
line source
#!/usr/bin/env python

from distutils.core import setup

setup(name='queues',
      version='0.5',
      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'},
     )