You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
305 B

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'
]
)