forked from jelmer/prometheus-xmpp-alerts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·41 lines (39 loc) · 1.38 KB
/
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
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/python3
# encoding: utf-8
# Setup file for prometheus-xmpp-alerts
# Copyright (C) 2016-2018 Jelmer Vernooij <[email protected]>
from setuptools import setup
setup(name='prometheus-xmpp-alerts',
author="Jelmer Vernooij",
author_email="[email protected]",
url="https://jelmer.uk/code/prometheus-xmpp-alerts",
description="Prometheus XMPP Alerts hook",
version='0.5.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.7',
'Programming Language :: Python :: 3.8',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Topic :: Software Development :: Version Control',
],
install_requires=[
'slixmpp',
'aiohttp',
'pytz',
'pyyaml',
'prometheus_client',
],
tests_require=['pytz'],
)