|
- #!/usr/bin/env python
-
- from setuptools import setup
-
- setup(name='vlanmang',
- version='0.1.0',
- description='A utility to use SNMP to configure switch VLANs',
- author='John-Mark Gurney',
- author_email='jmg@funkthat.com',
- classifiers=[
- 'Development Status :: 3 - Alpha',
- 'Environment :: Console',
- 'Intended Audience :: Information Technology',
- 'Intended Audience :: System Administrators',
- 'License :: OSI Approved :: BSD License',
- 'Topic :: Security',
- 'Topic :: System :: Networking',
- 'Topic :: Utilities',
- ],
- url='https://www.funkthat.com/gitea/jmg/vlanmang',
- packages=[ 'vlanmang', ],
- install_requires=[
- 'pysnmp',
- 'pysnmp-mibs',
- 'mock',
- ],
- extras_require = {
- 'dev': [ 'coverage' ],
- },
- entry_points={
- 'console_scripts': [
- 'vlanmang = vlanmang.__main__:main',
- ]
- }
- )
|