forked from alerta/alerta-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 846 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import setup, find_packages
setup(
name="alerta-pinger",
version='3.3.0',
description="Alerta Pinger daemon",
license="MIT",
author="Nick Satterly",
author_email="[email protected]",
url="http://github.com/alerta/alerta-contrib",
py_modules=['pinger'],
install_requires=[
'alerta',
'PyYaml'
],
entry_points={
'console_scripts': [
'alerta-pinger = pinger:main'
]
},
keywords="alerta ping daemon",
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Intended Audience :: System Administrators',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: System :: Monitoring',
]
)