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/plugins/enhance/setup.py

24 lines
556 B
Python
Raw Normal View History

2016-09-14 11:01:37 +00:00
from setuptools import setup, find_packages
2017-11-15 23:18:37 +00:00
version = '5.3.3'
2016-09-14 11:01:37 +00:00
setup(
name="alerta-enhance",
version=version,
description='Alerta plugin for alert enhancement',
url='https://github.com/alerta/alerta-contrib',
2017-05-10 09:09:13 +00:00
license='MIT',
author='Nick Satterly',
author_email='nick.satterly@theguardian.com',
2016-09-14 11:01:37 +00:00
packages=find_packages(),
py_modules=['alerta_enhance'],
include_package_data=True,
2016-09-14 11:01:37 +00:00
zip_safe=True,
entry_points={
'alerta.plugins': [
'enhance = alerta_enhance:EnhanceAlert'
]
}
)