Skip to content

Commit b2be00d

Browse files
committed
Fixing the package up for use on pypi
1 parent f6dd373 commit b2be00d

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

LICENSE renamed to LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2014 OpenTable, Inc.
1+
Copyright (c) 2014 Paul Stack
22

33
Permission is hereby granted, free of charge, to any person obtaining
44
a copy of this software and associated documentation files (the

setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

+8-4
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,18 @@
1010
health, that all nodes in the cluster are accounted for and also the Cluster
1111
JVM settings
1212
""",
13-
version="0.1.0",
13+
version="0.1",
1414
packages=find_packages(),
1515
author='Paul Stack',
16-
author_email='[email protected]',
16+
author_email='[email protected]',
1717
url="https://github.com/opentable/nagios-elasticsearch",
18-
scripts=["check_es_nodes.py"],
18+
download_url = 'https://github.com/stack72/nagios-elasticsearch/tarball/0.1',
19+
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"],
1920
license="MIT",
2021
install_requires=[str(req.req) for req in
2122
parse_requirements("requirements.txt")],
22-
include_package_data=True
23+
include_package_data=True,
24+
keywords = ['monitoring','nagios','elasticsearch'],
25+
classifiers=[],
26+
2327
)

0 commit comments

Comments
 (0)