-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
53 lines (46 loc) · 1.72 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
53
from distutils.core import setup
with open('requirements.txt') as f:
required = f.read().splitlines()
with open("VERSION.txt", "r") as file:
version = file.readline()
setup(
name='moira-python-client',
version=version,
description='Client for Moira - Alerting system based on Graphite data',
keywords='moira monitoring client metrics alerting',
long_description="""
Moira is a real-time alerting tool, based on Graphite data.
moira-client is a python client for Moira API.
Key features:
- create, update, delete, manage triggers
- create, delete, update subscriptions
- manage tags, patterns, notifications, events, contacts
""",
author = 'Alexander Lukyanchenko',
author_email = '[email protected]',
packages=[
'moira_client',
'moira_client.models',
'moira_client.models.team',
'moira_client.models.team.contact',
'moira_client.models.team.settings',
'moira_client.models.team.subscription',
'moira_client.models.team.user',
],
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
'Topic :: System :: Monitoring',
"License :: OSI Approved :: MIT License"
],
url='https://github.com/moira-alert/python-moira-client',
install_requires=required
)