Mercurial > public > queues
view setup.py @ 37:e1298d634da4
Some PEP8 changes.
Allow the redis client to be provided. This will allow multiple queue instances to share a connection pool.
author | btimby |
---|---|
date | Sun, 23 Jun 2013 02:53:30 +0000 |
parents | 336011507f75 |
children |
line wrap: on
line source
#!/usr/bin/env python from distutils.core import setup setup(name='queues', version='0.6.2', 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'}, )