view setup.py @ 11:586c2984188b

Added first run at redisd backend using the MIT-licensed redis client included in the redis source. This backend does not yet support supplying host, port, and db (need to rethink configuration a bit).
author mcroydon
date Tue, 12 May 2009 11:51:48 +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'},
     )