Skip to content

Commit

Permalink
moved app into python package format
Browse files Browse the repository at this point in the history
  • Loading branch information
josegonzalez committed Aug 6, 2012
1 parent e4a54a0 commit 754968f
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
@@ -0,0 +1 @@
v1, 2012-08-05 -- Initial release.
File renamed without changes.
2 changes: 2 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,2 @@
include *.txt
recursive-include docs *.txt
19 changes: 19 additions & 0 deletions setup.py
@@ -0,0 +1,19 @@
from distutils.core import setup

setup(
name='Beaver',
version='1',
author='Jose Diaz-Gonzalez',
author_email='support@savant.be',
packages=['beaver'],
scripts=['bin/beaver'],
url='http://github.com/josegonzalez/beaver',
license='LICENSE.txt',
description='python daemon that munches on logs and sends their contents to logstash',
long_description=open('README.txt').read(),
install_requires=[
"pyzmq==2.1.11",
"redis==2.4.11",
"ujson==1.9",
],
)

0 comments on commit 754968f

Please sign in to comment.