2012-11-14 12:42:32 +00:00
|
|
|
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=[
|
2012-11-15 01:37:37 +00:00
|
|
|
'pika == 0.9.6'
|
2012-11-14 12:42:32 +00:00
|
|
|
]
|
|
|
|
)
|