Stubbing in some python bits

mostly so that I can work cleanly in a virtualenv.
This commit is contained in:
Dan Buch 2012-11-14 07:42:32 -05:00
parent 9f9a905f00
commit 8ac1ef7da5
3 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,4 @@
/bin/* /bin/*
/.env /.env
/*.egg-info/
/src/github.com/ /src/github.com/

13
sylvilagus/setup.py Normal file
View File

@ -0,0 +1,13 @@
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'
]
)

View File