-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
executable file
·32 lines (30 loc) · 1021 Bytes
/
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
#!/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 = '[email protected]',
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 = [],
)