From: Christoph Egger Date: Mon, 29 Aug 2016 20:37:39 +0000 (+0200) Subject: Add setup.py X-Git-Url: https://git.siccegge.de//index.cgi?p=dane-monitoring-plugins.git;a=commitdiff_plain;h=a19b947ff02339ea970e22342ee9b3370e8b7b7c Add 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' + ], +)