From a19b947ff02339ea970e22342ee9b3370e8b7b7c Mon Sep 17 00:00:00 2001 From: Christoph Egger Date: Mon, 29 Aug 2016 22:37:39 +0200 Subject: [PATCH] Add setup.py --- setup.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 setup.py diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..26ef3fd --- /dev/null +++ b/setup.py @@ -0,0 +1,15 @@ +#!/usr/bin/python3 + +from setuptools import setup + +setup(name='DANE monitoring plugins', + version='0.1-alpha1', + description='DANE aware monitoring plugins', + author='Christoph Egger', + author_email='christoph@christoph-egger.org', + url='https://git.siccegge.de/?p=dane-monitoring-plugins.git', + packages=['check_dane' + ], + scripts=['check_dane_smtp' + ], +) -- 2.39.2