-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (45 loc) · 1.49 KB
/
setup.py
File metadata and controls
47 lines (45 loc) · 1.49 KB
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
42
43
44
45
46
47
# -*- encoding: utf-8 *-*
import sys
from setuptools import setup, find_packages
min_python = (3, 4)
if sys.version_info < min_python:
print("prombot requires Python %d.%d or later" % min_python)
sys.exit(1)
setup(
name='prombot',
author='Vivien Chene',
author_email='viv.chene@gmail.com',
# url='https://prombot.readthedocs.io/',
description='Send prometheus alerts to a telegram bot',
license='BSD',
platforms=['Linux', 'MacOS X', 'FreeBSD', 'OpenBSD', 'NetBSD', ],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: BSD :: FreeBSD',
'Operating System :: POSIX :: BSD :: OpenBSD',
'Operating System :: POSIX :: BSD :: NetBSD',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: System :: Monitoring',
],
packages=find_packages(),
zip_safe=False,
entry_points={
'console_scripts': [
'prombot = prombot.app:main',
]
},
setup_requires=['setuptools_scm>=1.7'],
install_requires=[
'flask>=0.10',
'requests',
],
)