File: setup.py

package info (click to toggle)
python-protobix 1.0.2-16
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 476 kB
  • sloc: python: 2,321; sql: 35; sh: 32; makefile: 3
file content (32 lines) | stat: -rwxr-xr-x 1,021 bytes parent folder | download | duplicates (4)
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
#!/usr/bin/env python

import sys
from setuptools import setup

setup(
    name = 'protobix',
    packages = ['protobix'],
    version = '1.0.2',
    install_requires = [
        'configobj',
        'simplejson'
    ],
    tests_require = [
        'mock',
        'pytest',
    ],
    test_suite='tests',
    description = 'Implementation of Zabbix Sender protocol',
    long_description = ( 'This module implements Zabbix Sender Protocol.\n'
                         'It allows to build list of items and send '
                         'them as trapper.\n'
                         'It currently supports items update as well as '
                         'Low Level Discovery.' ),
    author = 'Jean Baptiste Favre',
    author_email = 'jean-baptiste.favre@blablacar.com',
    license = 'GPL-3+',
    url='https://github.com/jbfavre/python-protobix/',
    download_url = 'https://github.com/jbfavre/python-protobix/archive/1.0.2.tar.gz',
    keywords = ['monitoring','zabbix','trappers'],
    classifiers = [],
   )