mirror of
https://github.com/alerta/alerta-contrib.git
synced 2025-03-17 05:52:38 +00:00
27 lines
621 B
Python
27 lines
621 B
Python
|
|
from setuptools import setup, find_packages
|
|
|
|
version = '5.3.3'
|
|
|
|
setup(
|
|
name="alerta-hipchat",
|
|
version=version,
|
|
description='Alerta plugin for HipChat',
|
|
url='https://github.com/alerta/alerta-contrib',
|
|
license='MIT',
|
|
author='Nick Satterly',
|
|
author_email='nick.satterly@theguardian.com',
|
|
packages=find_packages(),
|
|
py_modules=['alerta_hipchat'],
|
|
install_requires=[
|
|
'requests',
|
|
'jinja2'
|
|
],
|
|
include_package_data=True,
|
|
zip_safe=True,
|
|
entry_points={
|
|
'alerta.plugins': [
|
|
'hipchat = alerta_hipchat:SendRoomNotification'
|
|
]
|
|
}
|
|
)
|