Merge pull request from JacksonHill/master

AMQP Plugin refactoring
This commit is contained in:
Nick Satterly 2016-09-14 11:27:25 +01:00 committed by GitHub
commit bae901944a
2 changed files with 3 additions and 3 deletions
plugins/alerta-amqp

View file

@ -2,7 +2,7 @@
import setuptools
version = '0.2.0'
version = '0.2.1'
setuptools.setup(
name="alerta-amqp",
@ -12,7 +12,7 @@ setuptools.setup(
license='Apache License 2.0',
author='Nick Satterly',
author_email='nick.satterly@theguardian.com',
py_modules=['amqp'],
py_modules=['alerta_amqp'],
install_requires=[
'alerta-server',
'kombu'
@ -21,7 +21,7 @@ setuptools.setup(
zip_safe=False,
entry_points={
'alerta.plugins': [
'amqp = amqp:FanoutPublisher'
'amqp = alerta_amqp:FanoutPublisher'
]
}
)