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

22 lines
481 B
Python
Raw Normal View History

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",
packages=['pypmmn'],
scripts=['pypmmn/pypmmn.py'],
)