0
0
Fork 0
mirror of https://github.com/alerta/alerta-contrib.git synced 2025-03-17 14:02:38 +00:00
alerta_alerta-contrib/integrations/urlmon/setup.py

31 lines
679 B
Python
Raw Normal View History

2014-06-15 10:49:06 +00:00
#!/usr/bin/env python
2014-10-12 15:08:57 +00:00
import setuptools
2014-06-15 10:49:06 +00:00
2014-10-12 15:08:57 +00:00
version = '3.3.0'
2014-06-15 10:49:06 +00:00
2014-10-12 15:08:57 +00:00
setuptools.setup(
2014-06-15 10:49:06 +00:00
name="alerta-urlmon",
2014-10-12 15:08:57 +00: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 10:49:06 +00:00
py_modules=['urlmon'],
install_requires=[
2014-10-12 15:08:57 +00:00
'alerta'
2014-06-15 10:49:06 +00:00
],
2014-10-12 15:08:57 +00:00
include_package_data=True,
zip_safe=False,
2014-06-15 10:49:06 +00:00
entry_points={
'console_scripts': [
'alerta-urlmon = urlmon:main'
]
},
2014-10-12 15:08:57 +00:00
keywords="alerta url monitoring",
2014-06-15 10:49:06 +00:00
classifiers=[
'Topic :: System :: Monitoring',
]
)