forked from locationlabs/influxdb-nagios-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 796 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
27
28
29
30
31
32
33
34
#!/usr/bin/env python
from setuptools import setup, find_packages
__version__ = "1.3.2"
setup(
name="influxdbnagiosplugin",
version=__version__,
description="InfluxDB Nagios Plugin",
author="Location Labs",
author_email="[email protected]",
url="http://locationlabs.com",
packages=find_packages(exclude=["*.tests"]),
setup_requires=[
"nose>=1.3.7"
],
install_requires=[
"click>=6.2",
"influxdb>=2.10.0",
"nagiosplugin>=1.2.3",
],
tests_require=[
"PyHamcrest>=1.8.5",
"mock>=1.0.1",
"coverage>=4.0.1",
],
test_suite="influxdbnagiosplugin.tests",
entry_points={
"console_scripts": [
"check-measurement = influxdbnagiosplugin.main:main",
]
}
)