1from distutils.core import setup
2from pypmmn.pypmmn import __version__
3
4PACKAGE = "pypmmn"
5NAME = "pypmmn"
6DESCRIPTION = "Python port of the 'Poor man's munin-node'"
7AUTHOR = "Michel Albert"
8AUTHOR_EMAIL = "michel@albert.lu"
9
10setup(
11    name=NAME,
12    version=__version__,
13    description=DESCRIPTION,
14    long_description=open("README.rst").read(),
15    author=AUTHOR,
16    author_email=AUTHOR_EMAIL,
17    license="BSD",
18    url='https://github.com/exhuma/munin-contrib/tree/master/tools/pypmmn',
19    packages=['pypmmn'],
20    scripts=['pypmmn/pypmmn.py'],
21)
22
23