mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-07-22 14:16:00 +00:00
Initial commit of pypmmn
A port of pmmn to python. * Currently only handles text from stdin (as with pmmn). * The location of the ``plugins_folder`` is currently hardcoded. * No command line arguments parsed yet.
This commit is contained in:
parent
aa2691a4c2
commit
b8ed5d1005
4 changed files with 182 additions and 0 deletions
23
tools/pypmmn/setup.py
Normal file
23
tools/pypmmn/setup.py
Normal file
|
@ -0,0 +1,23 @@
|
|||
from distutils.core import setup
|
||||
from pypmmn.pypmmn import __version__
|
||||
|
||||
PACKAGE = "pypmmn"
|
||||
NAME = "pypmmn"
|
||||
DESCRIPTION = "Python port of the 'Poor man's munin-node'"
|
||||
AUTHOR = "Michel Albert"
|
||||
AUTHOR_EMAIL = "michel@albert.lu"
|
||||
|
||||
setup(
|
||||
name=NAME,
|
||||
version=__version__,
|
||||
description=DESCRIPTION,
|
||||
long_description=open("README.rst").read(),
|
||||
author=AUTHOR,
|
||||
author_email=AUTHOR_EMAIL,
|
||||
license="BSD",
|
||||
include_package_data=True,
|
||||
packages=['pypmmn'],
|
||||
scripts=['pypmmn/pypmmn.py'],
|
||||
zip_safe=False,
|
||||
)
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue