-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
32 lines (30 loc) · 1.09 KB
/
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
from setuptools import find_packages, setup
import versioneer
setup(
name='mkp',
version=versioneer.get_version(),
url='https://github.com/tom-mi/python-mkp/',
license='GPLv2',
author='Thomas Reifenberger',
install_requires=[],
author_email='tom-mi@users.noreply.github.com',
description='Pack and unpack Check_MK mkp files',
long_description=open('README.md', 'r').read(),
long_description_content_type='text/markdown',
packages=find_packages(),
platforms='any',
classifiers=[
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: System :: Monitoring',
],
cmdclass=versioneer.get_cmdclass(),
)