-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
34 lines (32 loc) · 1.2 KB
/
setup.py
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
32
33
34
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="send_nsca",
version="0.1.4.1-yelp1",
author="Yelp",
author_email="yelplabs@yelp.com",
url="http://github.com/Roguelazer/send_nsca",
description='pure-python nsca sender',
classifiers=[
"Programming Language :: Python",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)",
"Topic :: System :: Monitoring",
"Intended Audience :: Developers",
"Development Status :: 4 - Beta",
],
scripts=["bin/py_send_nsca"],
packages=["send_nsca"],
provides=["send_nsca"],
install_requires=["pycrypto>=2.0.0", 'six',],
tests_require=["nose", "mock==1.0.1"],
long_description="""send_nsca -- a pure-python nsca sender
NSCA is the remote passive acceptance daemon used with many Nagios installs. It
ships with a (C-language) executable called send_nsca for submitting checks.
This is a mostly-clean re-implementation of send_nsca in pure-python. It
supports 10 of the 26 crypto functions used by upstream NSCA, sending to
multiple hosts with one invocation, and timeouts.
"""
)