-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (28 loc) · 861 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
# coding=utf8
from setuptools import setup
setup(
name='ZabbixAPI',
version='1.0.0',
author='itnihao',
author_email='[email protected]',
description=('Zabbbix API'),
keywords='Zabbix API',
packages=['ZabbixAPI'],
include_package_data=True,
zip_safe=False,
url='https://github.com/itnihao/ZabbixAPI',
scripts=['zbx_tool'],
install_requires=[
'requests>=2.3.0'
],
classifiers=[
'Environment :: Console',
'Development Status :: 2 - Production/Stable',
'Topic :: System :: Monitoring',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
)