2016-09-05 20:34:36 +00:00
|
|
|
|
2016-09-14 11:01:37 +00:00
|
|
|
from setuptools import setup, find_packages
|
2016-09-05 20:34:36 +00:00
|
|
|
|
2017-11-15 23:18:37 +00:00
|
|
|
version = '5.3.3'
|
2016-09-05 20:34:36 +00:00
|
|
|
|
2016-09-14 11:01:37 +00:00
|
|
|
setup(
|
2016-09-05 20:34:36 +00:00
|
|
|
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',
|
2016-09-05 20:34:36 +00:00
|
|
|
author='Nick Satterly',
|
|
|
|
author_email='nick.satterly@theguardian.com',
|
2016-09-14 11:01:37 +00:00
|
|
|
packages=find_packages(),
|
2016-09-14 10:57:44 +00:00
|
|
|
py_modules=['alerta_enhance'],
|
2016-09-05 20:34:36 +00:00
|
|
|
include_package_data=True,
|
2016-09-14 11:01:37 +00:00
|
|
|
zip_safe=True,
|
2016-09-05 20:34:36 +00:00
|
|
|
entry_points={
|
|
|
|
'alerta.plugins': [
|
2016-09-14 10:57:44 +00:00
|
|
|
'enhance = alerta_enhance:EnhanceAlert'
|
2016-09-05 20:34:36 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
)
|