2015-01-27 22:40:59 +00:00
|
|
|
|
2016-09-14 11:01:37 +00:00
|
|
|
from setuptools import setup, find_packages
|
2015-01-27 22:40:59 +00:00
|
|
|
|
2017-09-17 14:56:55 +00:00
|
|
|
version = '5.3.3'
|
2015-01-27 22:40:59 +00:00
|
|
|
|
2016-09-14 11:01:37 +00:00
|
|
|
setup(
|
2015-01-27 22:40:59 +00:00
|
|
|
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',
|
2015-01-27 22:40:59 +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_hipchat'],
|
2015-01-27 22:40:59 +00:00
|
|
|
install_requires=[
|
2016-11-20 23:10:57 +00:00
|
|
|
'requests',
|
|
|
|
'jinja2'
|
2015-01-27 22:40:59 +00:00
|
|
|
],
|
|
|
|
include_package_data=True,
|
2016-09-14 11:01:37 +00:00
|
|
|
zip_safe=True,
|
2015-01-27 22:40:59 +00:00
|
|
|
entry_points={
|
|
|
|
'alerta.plugins': [
|
2016-09-14 10:57:44 +00:00
|
|
|
'hipchat = alerta_hipchat:SendRoomNotification'
|
2015-01-27 22:40:59 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
)
|