2015-02-02 00:11:14 +00:00
|
|
|
|
2016-09-14 11:01:37 +00:00
|
|
|
from setuptools import setup, find_packages
|
2015-02-02 00:11:14 +00:00
|
|
|
|
2016-09-15 09:16:11 +00:00
|
|
|
version = '0.3.1'
|
2015-02-02 00:11:14 +00:00
|
|
|
|
2016-09-14 11:01:37 +00:00
|
|
|
setup(
|
2015-02-02 00:11:14 +00:00
|
|
|
name="alerta-twilio",
|
|
|
|
version=version,
|
|
|
|
description='Alerta plugin for Twilio SMS',
|
|
|
|
url='https://github.com/alerta/alerta-contrib',
|
|
|
|
license='Apache License 2.0',
|
|
|
|
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_twilio_sms'],
|
2015-02-02 00:11:14 +00:00
|
|
|
install_requires=[
|
2016-09-14 11:01:37 +00:00
|
|
|
'twilio'
|
2015-02-02 00:11:14 +00:00
|
|
|
],
|
|
|
|
include_package_data=True,
|
2016-09-14 11:01:37 +00:00
|
|
|
zip_safe=True,
|
2015-02-02 00:11:14 +00:00
|
|
|
entry_points={
|
|
|
|
'alerta.plugins': [
|
2016-09-14 10:57:44 +00:00
|
|
|
'twilio_sms = alerta_twilio_sms:SendSMSMessage'
|
2015-02-02 00:11:14 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
)
|