comparison 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
comparison
equal deleted inserted replaced
0:17e60d0dfb44 1:32222d11961f
1 #!/usr/bin/env python
2
3 from distutils.core import setup
4 import queues
5 setup(name='queues',
6 version='0.2',
7 description='A lowest-common-denominator API for interacting with lightweight queue services.',
8 author='Matt Croydon',
9 author_email='mcroydon@gmail.com',
10 url='http://postneo.com', # TODO: Fixme
11 packages=['queues', 'queues.backends'],
12 package_dir={'queues': 'queues'},
13 )