box-o-sand/sylvilagus/python/setup.py
Dan Buch 1120412e45 Namespacing work by implementation language
which just might be a horrible idea, but it was feeling cluttered at
just two languages and I'm about to add a third...
2012-11-14 17:56:40 -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'
]
)