annotate setup.py @ 1:32222d11961f

Initial commit with two tested backends: memcached protocol and Amazon SQS. Because of the non-guaranteed nature of SQS queues, some tests may fail even though the library is working properly.
author mcroydon
date Thu, 08 Jan 2009 07:49:35 +0000
parents
children c6b79a60b3f1
rev   line source
mcroydon@1 1 #!/usr/bin/env python
mcroydon@1 2
mcroydon@1 3 from distutils.core import setup
mcroydon@1 4 import queues
mcroydon@1 5 setup(name='queues',
mcroydon@1 6 version='0.2',
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@1 10 url='http://postneo.com', # TODO: Fixme
mcroydon@1 11 packages=['queues', 'queues.backends'],
mcroydon@1 12 package_dir={'queues': 'queues'},
mcroydon@1 13 )