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 32 33 34
|
#!/usr/bin/python3
# encoding: utf-8
# Setup file for prometheus-xmpp-alerts
# Copyright (C) 2016-2018 Jelmer Vernooij <jelmer@jelmer.uk>
from setuptools import setup
setup(name='prometheus-xmpp-alerts',
author="Jelmer Vernooij",
author_email="jelmer@jelmer.uk",
url="https://jelmer.uk/code/prometheus-xmpp-alerts",
description="Prometheus XMPP Alerts hook",
version='0.3',
license='Apachev2',
project_urls={
"Bug Tracker": "https://github.com/jelmer/prometheus-xmpp-alerts/issues",
"Repository": "https://www.jelmer.uk/code/prometheus-xmpp-alerts",
"GitHub": "https://github.com/jelmer/prometheus-xmpp-alerts",
},
keywords="prometheus xmpp jabber",
packages=['prometheus_xmpp'],
scripts=['prometheus-xmpp-alerts'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Topic :: Software Development :: Version Control',
],
install_requires=['slixmpp', 'aiowsgi', 'pyyaml', 'prometheus_client'],
)
|