Stubbing in some python bits
mostly so that I can work cleanly in a virtualenv.
This commit is contained in:
parent
9f9a905f00
commit
8ac1ef7da5
1
sylvilagus/.gitignore
vendored
1
sylvilagus/.gitignore
vendored
@ -1,3 +1,4 @@
|
|||||||
/bin/*
|
/bin/*
|
||||||
/.env
|
/.env
|
||||||
|
/*.egg-info/
|
||||||
/src/github.com/
|
/src/github.com/
|
||||||
|
13
sylvilagus/setup.py
Normal file
13
sylvilagus/setup.py
Normal 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'
|
||||||
|
]
|
||||||
|
)
|
0
sylvilagus/sylvilagus/__init__.py
Normal file
0
sylvilagus/sylvilagus/__init__.py
Normal file
Loading…
Reference in New Issue
Block a user