mirror of
https://github.com/alerta/alerta-contrib.git
synced 2025-03-17 14:02:38 +00:00
31 lines
730 B
Python
31 lines
730 B
Python
#!/usr/bin/env python
|
|
|
|
import setuptools
|
|
|
|
version = '3.3.0'
|
|
|
|
setuptools.setup(
|
|
name="alerta-cloudwatch",
|
|
version=version,
|
|
description='Alerta integration for AWS CloudWatch alarms',
|
|
url='https://github.com/alerta/alerta-contrib',
|
|
license='Apache License 2.0',
|
|
author='Nick Satterly',
|
|
author_email='nick.satterly@theguardian.com',
|
|
py_modules=['cloudwatch'],
|
|
install_requires=[
|
|
'alerta',
|
|
'boto'
|
|
],
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
entry_points={
|
|
'console_scripts': [
|
|
'alerta-cloudwatch = cloudwatch:main'
|
|
]
|
|
},
|
|
keywords="alerta cloudwatch monitoring",
|
|
classifiers=[
|
|
'Topic :: System :: Monitoring',
|
|
]
|
|
)
|