]> git.siccegge.de Git - dane-monitoring-plugins.git/blobdiff - setup.py
Refactor TLSA service checks
[dane-monitoring-plugins.git] / setup.py
index 26ef3fd86ed2adab8f3ba3b1c26970be2f8c2281..64c7636f79cf5104b14a2c4bdb5df4516df67526 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -3,13 +3,18 @@
 from setuptools import setup
 
 setup(name='DANE monitoring plugins',
-      version='0.1-alpha1',
+      version='0.1',
       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'
+      entry_points={
+          'console_scripts': [
+              'check_dane_https = check_dane.https:main',
+              'check_dane_smtp  = check_dane.smtp:main',
+              'check_dane_xmpp  = check_dane.xmpp:main',
           ],
+      }
 )