-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (22 loc) · 889 Bytes
/
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
#!/usr/bin/env python3
# vim: set fileencoding=utf-8
'''
Nagios NRPE check for checking the AMQP 1.0 connection to a server (like check aliveness does)
Copyright (c) 2015-, IT Services, Stockholm University
Licensed under the Revised BSD License.
'''
import sys
from setuptools import setup, find_packages
version = "1.2.0"
setup(
name="check_amqp1.0",
version=version,
description="Nagios NRPE check for checking the AMQP 1.0 connection to a server (like check aliveness does)",
long_description=open("README.md").read(),
author="Simon Lundström <[email protected]>, Johan Wassberg <[email protected]>",
url="https://github.com/stockholmuniversity/nagios-plugin-check_amqp1.0",
license="Revised BSD License",
scripts=['check_amqp1.0'],
install_requires=open('requirements.txt').readlines(),
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
)