alerta-contrib/integrations/syslog/setup.py

31 lines
678 B
Python
Raw Normal View History

2014-06-16 10:37:25 +01:00
#!/usr/bin/env python
2014-10-13 12:21:16 +01:00
import setuptools
2014-06-16 10:37:25 +01:00
2017-11-16 09:29:48 +00:00
version = '3.5.0'
2014-06-16 10:37:25 +01:00
2014-10-13 12:21:16 +01:00
setuptools.setup(
2014-06-16 10:37:25 +01:00
name="alerta-syslog",
2014-10-13 12:21:16 +01:00
version=version,
description='Alerta script for Syslog messages',
url='https://github.com/alerta/alerta-contrib',
2017-05-10 10:09:13 +01:00
license='MIT',
2014-10-13 12:21:16 +01:00
author='Nick Satterly',
author_email='nick.satterly@theguardian.com',
2016-06-22 10:28:50 +01:00
py_modules=['syslogfwder'],
2014-06-16 10:37:25 +01:00
install_requires=[
2014-10-13 12:21:16 +01:00
'alerta'
2014-06-16 10:37:25 +01:00
],
2014-10-13 12:21:16 +01:00
include_package_data=True,
zip_safe=False,
2014-06-16 10:37:25 +01:00
entry_points={
'console_scripts': [
2016-06-22 10:28:50 +01:00
'alerta-syslog = syslogfwder:main'
2014-06-16 10:37:25 +01:00
]
},
2014-10-13 12:21:16 +01:00
keywords="alerta syslog monitoring",
2014-06-16 10:37:25 +01:00
classifiers=[
'Topic :: System :: Monitoring',
]
)