2
0
mirror of https://github.com/munin-monitoring/contrib.git synced 2018-11-08 00:59:34 +01:00
contrib-munin/tools/pypmmn/setup.py
Michel Albert b8ed5d1005 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.
2012-04-05 14:42:16 +02:00

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,
)