1
1
from setuptools import setup , find_packages
2
2
3
+
3
4
def parse_requirements (filename ):
4
5
""" load requirements from a pip requirements file """
5
6
lineiter = (line .strip () for line in open (filename ))
@@ -14,12 +15,16 @@ def parse_requirements(filename):
14
15
author = 'Paul Stack' ,
15
16
16
17
url = "https://github.com/opentable/nagios-elasticsearch" ,
17
- download_url = 'https://github.com/stack72/nagios-elasticsearch/tarball/0.1.2' ,
18
- 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" ],
18
+ download_url = 'http://github.com/stack72/nagios-elasticsearch/tarball/0.1.2' ,
19
+ scripts = ["check_es_nodes.py" ,
20
+ "check_es_cluster_status.py" ,
21
+ "check_es_jvm_usage.py" ,
22
+ "check_es_unassigned_shards.py" ,
23
+ "check_es_split_brain.py" ],
19
24
license = "MIT" ,
20
25
install_requires = parse_requirements ("requirements.txt" ),
21
26
include_package_data = True ,
22
- keywords = ['monitoring' ,'nagios' ,'elasticsearch' ],
27
+ keywords = ['monitoring' , 'nagios' , 'elasticsearch' ],
23
28
classifiers = [],
24
29
25
30
)
0 commit comments