VLAN Manager tool
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

36 lines
941 B

  1. #!/usr/bin/env python
  2. from setuptools import setup
  3. setup(name='vlanmang',
  4. version='0.1.0',
  5. description='A utility to use SNMP to configure switch VLANs',
  6. author='John-Mark Gurney',
  7. author_email='jmg@funkthat.com',
  8. classifiers=[
  9. 'Development Status :: 3 - Alpha',
  10. 'Environment :: Console',
  11. 'Intended Audience :: Information Technology',
  12. 'Intended Audience :: System Administrators',
  13. 'License :: OSI Approved :: BSD License',
  14. 'Topic :: Security',
  15. 'Topic :: System :: Networking',
  16. 'Topic :: Utilities',
  17. ],
  18. url='https://www.funkthat.com/gitea/jmg/vlanmang',
  19. packages=[ 'vlanmang', ],
  20. install_requires=[
  21. 'pysnmp',
  22. 'pysnmp-mibs',
  23. 'mock',
  24. ],
  25. extras_require = {
  26. 'dev': [ 'coverage' ],
  27. },
  28. entry_points={
  29. 'console_scripts': [
  30. 'vlanmang = vlanmang.__main__:main',
  31. ]
  32. }
  33. )