mirror of
https://github.com/munin-monitoring/contrib.git
synced 2018-11-08 00:59:34 +01:00
b8ed5d1005
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.
24 lines
532 B
Python
24 lines
532 B
Python
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,
|
|
)
|
|
|