-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsetup.py
32 lines (31 loc) · 838 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
from distutils.core import setup
setup(
name='sensu_plugin',
version='0.8.0',
author='Sensu-Plugins and Contributors',
author_email='sensu-users@googlegroups.com',
packages=['sensu_plugin', 'sensu_plugin.tests'],
scripts=[],
url='https://github.com/sensu-plugins/sensu-plugin-python',
description='A framework for writing Python sensu plugins.',
long_description="""
""",
install_requires=[
'argparse',
'requests'
],
tests_require=[
'pycodestyle',
'pylint',
'coverage',
'nose',
'pytest',
'mock'
],
classifiers=[
'Programming Language :: Python :: 2.7',
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)