X-Git-Url: https://git.siccegge.de//index.cgi?p=dane-monitoring-plugins.git;a=blobdiff_plain;f=setup.py;h=64c7636f79cf5104b14a2c4bdb5df4516df67526;hp=26ef3fd86ed2adab8f3ba3b1c26970be2f8c2281;hb=19426697a401ad52cf88d88700b3e14f05a9d4a7;hpb=a19b947ff02339ea970e22342ee9b3370e8b7b7c diff --git a/setup.py b/setup.py index 26ef3fd..64c7636 100755 --- 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', ], + } )