alerta-contrib/plugins/pagerduty/setup.py

27 lines
605 B
Python
Raw Permalink Normal View History

2015-02-02 15:19:08 +00:00
2016-09-14 12:01:37 +01:00
from setuptools import setup, find_packages
2015-02-02 15:19:08 +00:00
2017-09-17 15:56:55 +01:00
version = '5.3.1'
2015-02-02 15:19:08 +00:00
2016-09-14 12:01:37 +01:00
setup(
2015-02-02 15:19:08 +00:00
name="alerta-pagerduty",
version=version,
description='Alerta plugin for PagerDuty',
url='https://github.com/alerta/alerta-contrib',
2017-05-10 10:09:13 +01:00
license='MIT',
2015-02-02 15:19:08 +00:00
author='Nick Satterly',
author_email='nick.satterly@theguardian.com',
2016-09-14 12:01:37 +01:00
packages=find_packages(),
py_modules=['alerta_pagerduty'],
2015-02-02 15:19:08 +00:00
install_requires=[
2016-09-14 12:01:37 +01:00
'requests'
2015-02-02 15:19:08 +00:00
],
include_package_data=True,
2016-09-14 12:01:37 +01:00
zip_safe=True,
2015-02-02 15:19:08 +00:00
entry_points={
'alerta.plugins': [
'pagerduty = alerta_pagerduty:TriggerEvent'
2015-02-02 15:19:08 +00:00
]
}
)