-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (29 loc) · 981 Bytes
/
setup.py
File metadata and controls
34 lines (29 loc) · 981 Bytes
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
#!/usr/bin/python
# -*- coding: utf-8 -*-
"""
Zabbix Tuner
"""
import os
from setuptools import setup, find_packages, findall
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='Zabbix Tuner',
url='https://github.com/janssenlima/ZabbixTuner',
version='0.3',
license='GNU LGPL 2.1',
author='Janssen dos Reis Lima',
author_email='janssenreislima@gmail.com',
description='ZabbixTuner is a project that uses the Zabbix API that aims to verify a Zabbix installation and propose adjustments to improve system performance and stability.',
py_modules=['ZabbixTuner'],
packages=['conf'],
include_package_data=True,
zip_safe=False,
platforms='any',
keywords='zabbix api tuner tuning',
install_requires=['zabbix-api', 'termcolor', 'progressbar'],
classifiers=[
'Programming Language :: Python :: 2',
'Development Status :: 5 - Production/Stable',
],
)