forked from arthru/python-mk-livestatus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·37 lines (31 loc) · 1.1 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
#!/usr/bin/env python
from os.path import join, dirname
from setuptools import setup
import mk_livestatus
def read(filename):
filepath = join(dirname(__file__), filename)
with open(filepath) as f:
return f.read()
setup(
name='python-mk-livestatus',
version=mk_livestatus.__version__,
description='Helps to query MK livestatus and get results',
long_description=read('README.rst'),
author='Michael Fladischer',
author_email='[email protected]',
url='https://github.com/arthru/python-mk-livestatus',
download_url='http://pypi.python.org/pypi/python-mk-livestatus',
packages=['mk_livestatus'],
license='BSD',
test_requires=['tox', 'mock', 'pytest'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Monitoring',
],
)