forked from sensu-plugins/sensu-plugin-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 648 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 648 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
from distutils.core import setup
setup(
name='sensu_plugin',
version='0.7.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',
license='LICENSE.txt',
description='A framework for writing Python sensu plugins.',
long_description="""
""",
install_requires=[
'argparse',
'requests'
],
tests_require=[
'pycodestyle',
'pylint',
'coverage',
'nose',
'pytest',
'mock'
],
)