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
|
|
|
|
2018-09-11 17:31:02 +02: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,
|
2017-05-19 22:17:51 +01:00
|
|
|
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(),
|
2016-09-14 11:57:44 +01:00
|
|
|
py_modules=['alerta_influxdb'],
|
2014-08-09 22:23:11 +01:00
|
|
|
install_requires=[
|
2018-03-21 09:53:38 +00:00
|
|
|
'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': [
|
2016-09-14 11:57:44 +01:00
|
|
|
'influxdb = alerta_influxdb:InfluxDBWrite'
|
2014-08-09 22:23:11 +01:00
|
|
|
]
|
|
|
|
}
|
|
|
|
)
|