]> git.siccegge.de Git - dane-monitoring-plugins.git/commitdiff
Add setup.py
authorChristoph Egger <christoph@christoph-egger.org>
Mon, 29 Aug 2016 20:37:39 +0000 (22:37 +0200)
committerChristoph Egger <christoph@christoph-egger.org>
Mon, 29 Aug 2016 20:37:39 +0000 (22:37 +0200)
setup.py [new file with mode: 0755]

diff --git a/setup.py b/setup.py
new file mode 100755 (executable)
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'
+          ],
+)