File: setup.py

package info (click to toggle)
python-mk-livestatus 0.2-1
  • links: PTS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 68 kB
  • ctags: 13
  • sloc: python: 73; makefile: 2
file content (30 lines) | stat: -rw-r--r-- 1,094 bytes parent folder | download
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
#!/usr/bin/env python
import os
from distutils.core import setup

import mk_livestatus

def read(fname):
    return open(os.path.join(os.path.dirname(__file__), fname)).read()

setup(name='python-mk-livestatus',
      version=mk_livestatus.__version__,
      description='Helps to query MK livestatus and return results as dictionaries',
      long_description=read('README.rst'),
      author='Michael Fladischer',
      author_email='michael@fladi.at',
      url='https://github.com/arthru/python-mk-livestatus',
      download_url='http://pypi.python.org/pypi/python-mk-livestatus',
      packages=['mk_livestatus'],
      license='BSD',
      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',
      ],
)