alerta-contrib/plugins/influxdb/setup.py

27 lines
608 B
Python
Raw Normal View History

2014-08-09 22:23:11 +01:00
2016-09-14 12:01:37 +01:00
from setuptools import setup, find_packages
2014-08-09 22:23:11 +01:00
version = '5.4.3'
2014-08-09 22:23:11 +01:00
2016-09-14 12:01:37 +01:00
setup(
2014-08-09 22:23:11 +01:00
name="alerta-influxdb",
version=version,
description='Alerta plugin for InfluxDB',
2014-08-09 22:23:11 +01:00
url='https://github.com/alerta/alerta-contrib',
2017-05-10 10:09:13 +01:00
license='MIT',
2014-08-09 22:23:11 +01:00
author='Nick Satterly',
author_email='nick.satterly@theguardian.com',
2016-09-14 12:01:37 +01:00
packages=find_packages(),
py_modules=['alerta_influxdb'],
2014-08-09 22:23:11 +01:00
install_requires=[
'influxdb>=5.0.0'
2014-08-09 22:23:11 +01:00
],
include_package_data=True,
2016-09-14 12:01:37 +01:00
zip_safe=True,
2014-08-09 22:23:11 +01:00
entry_points={
'alerta.plugins': [
'influxdb = alerta_influxdb:InfluxDBWrite'
2014-08-09 22:23:11 +01:00
]
}
)