14 lines
305 B
Python
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'
|
||
|
]
|
||
|
)
|