box-o-sand/sylvilagus/python/setup.py
Dan Buch 18a9674ec2 Working through the confirmation example
albeit with code that works rather than what came with the book.  Hmm...
2012-11-14 20:37:37 -05:00

14 lines
305 B
Python

from setuptools import setup
setup(
name='sylvilagus',
version='0.1.0',
author='Dan Buch',
author_email='dan@meatballhat.com',
description='crap accumulated while reading through RabbitMQ in Action',
packages=['sylvilagus'],
install_requires=[
'pika == 0.9.6'
]
)