forked from stack72/nagios-elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
30 lines (26 loc) · 1.06 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
from setuptools import setup, find_packages
def parse_requirements(filename):
""" load requirements from a pip requirements file """
lineiter = (line.strip() for line in open(filename))
return [line for line in lineiter if line and not line.startswith("#")]
setup(
name="nagios-elasticsearch",
description="A selection of Nagios plugins to monitor ElasticSearch.",
long_description=open('README.rst').read(),
version="0.1.3",
packages=find_packages(),
author='Paul Stack',
author_email='[email protected]',
url="https://github.com/stack72/nagios-elasticsearch",
download_url='http://github.com/stack72/nagios-elasticsearch/tarball/0.1.3',
scripts=["check_es_nodes.py",
"check_es_cluster_status.py",
"check_es_jvm_usage.py",
"check_es_unassigned_shards.py",
"check_es_split_brain.py"],
license="MIT",
install_requires=parse_requirements("requirements.txt"),
include_package_data=True,
keywords=['monitoring', 'nagios', 'elasticsearch'],
classifiers=[],
)