-
Notifications
You must be signed in to change notification settings - Fork 87
/
setup.py
52 lines (46 loc) · 1.6 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
42
43
44
45
46
47
48
49
50
51
52
from setuptools import setup, find_packages
with open('requirements.txt') as req:
requirements = req.read().splitlines()
with open('README.md', encoding='utf-8') as f:
readme = f.read()
setup(name='prom2teams',
version='5.0.0',
description='Project that redirects Prometheus Alert Manager '
'notifications to Microsoft Teams',
long_description=readme,
long_description_content_type='text/markdown',
install_requires=requirements,
setup_requires=[
'flake8'
],
scripts=[
'bin/prom2teams',
'bin/prom2teams_uwsgi'
],
package_data={
'': ['*.ini', '*.j2', '*.ico'],
},
include_package_data=True,
data_files=[
('/usr/local/etc/prom2teams', ['bin/wsgi.py'])
],
url='https://github.com/idealista/prom2teams',
author='Idealista, S.A.U',
author_email='[email protected]',
license='Apache license 2.0',
packages=find_packages(exclude=('tests', 'docs')),
keywords='microsoft teams prometheus alert',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Topic :: Utilities',
'Topic :: Communications :: Chat',
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Topic :: System :: Monitoring',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
],
zip_safe=False)