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

28 lines
621 B
Python
Raw Normal View History

2016-09-14 11:01:37 +00:00
from setuptools import setup, find_packages
2017-09-17 14:56:55 +00:00
version = '5.3.3'
2016-09-14 11:01:37 +00:00
setup(
name="alerta-hipchat",
version=version,
description='Alerta plugin for HipChat',
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_hipchat'],
install_requires=[
'requests',
'jinja2'
],
include_package_data=True,
2016-09-14 11:01:37 +00:00
zip_safe=True,
entry_points={
'alerta.plugins': [
'hipchat = alerta_hipchat:SendRoomNotification'
]
}
)