1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
#!/usr/bin/env python
import os
from setuptools import setup
# Utility function to read the README file.
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='snmp_passpersist',
version='2.1.0',
license='GPLv3',
description="""SNMP passpersist backend for Net-SNMP""",
long_description=read('README.md'),
long_description_content_type="text/markdown",
keywords="snmp net-snmp",
author='Nicolas Agius',
author_email='nicolas.agius@lps-it.fr',
url='http://github.com/nagius/snmp_passpersist',
py_modules=['snmp_passpersist'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Development Status :: 5 - Production/Stable',
'Operating System :: POSIX :: Linux',
'Topic :: System :: Monitoring',
],
)
# vim: ts=4:sw=4:ai
|