alerta-contrib/integrations/urlmon/setup.py

31 lines
679 B
Python
Raw Permalink Normal View History

2014-06-15 11:49:06 +01:00
#!/usr/bin/env python
2014-10-12 16:08:57 +01:00
import setuptools
2014-06-15 11:49:06 +01:00
2014-10-12 16:08:57 +01:00
version = '3.3.0'
2014-06-15 11:49:06 +01:00
2014-10-12 16:08:57 +01:00
setuptools.setup(
2014-06-15 11:49:06 +01:00
name="alerta-urlmon",
2014-10-12 16:08:57 +01:00
version=version,
description='Alerta script for URL monitoring',
url='https://github.com/alerta/alerta-contrib',
license='Apache License 2.0',
author='Nick Satterly',
author_email='nick.satterly@theguardian.com',
2014-06-15 11:49:06 +01:00
py_modules=['urlmon'],
install_requires=[
2014-10-12 16:08:57 +01:00
'alerta'
2014-06-15 11:49:06 +01:00
],
2014-10-12 16:08:57 +01:00
include_package_data=True,
zip_safe=False,
2014-06-15 11:49:06 +01:00
entry_points={
'console_scripts': [
'alerta-urlmon = urlmon:main'
]
},
2014-10-12 16:08:57 +01:00
keywords="alerta url monitoring",
2014-06-15 11:49:06 +01:00
classifiers=[
'Topic :: System :: Monitoring',
]
)