-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 982 Bytes
/
setup.py
File metadata and controls
31 lines (27 loc) · 982 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
def read(relative):
contents = open(relative, 'r').read()
return [l for l in contents.split('\n') if l != '']
setup(
name='hayrack',
version=read('VERSION')[0],
description="""
A tool for capturing messages from STDIN, such as when run as a program
destination by Syslog-NG, and then load balance these messages over ZeroMQ
to downstream worker nodes for processing.""",
author='Steven Gonzales',
author_email='steven.gonzales@rackspace.com',
url='https://github.com/ProjectMeniscus/hayrack',
tests_require=read('./tools/test-requires'),
install_requires=read('./tools/pip-requires'),
test_suite='nose.collector',
zip_safe=False,
include_package_data=True,
packages=find_packages(exclude=['ez_setup'])
)