-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
44 lines (40 loc) · 1.41 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
# -*- coding: utf-8 -*-
# Copyright (c) 2018 by Alberto Vara <[email protected]>
import codecs
import os
from setuptools import setup, find_packages
version = __import__("project").__version__
author = __import__("project").__author__
author_email = __import__("project").__email__
if os.path.exists("README.md"):
long_description = codecs.open("README.md", "r", "utf-8").read()
else:
long_description = "Launch custom actions based on Alertmanager alerts."
setup(
name="AlertmanagerActions",
version=version,
author=author,
author_email=author_email,
description="Launch custom actions based on Alertmanager alerts.",
long_description=long_description,
classifiers=[
"Development Status :: 6 - Mature",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Natural Language :: English",
"License :: OSI Approved :: GPL License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
python_requires=">=3.5",
license="GPLv3",
platforms=["any"],
keywords="python, microservices",
url="https://github.com/little-angry-clouds/alertmanager-actions",
test_suite="nose.collector",
packages=find_packages(),
include_package_data=True,
)