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.
 
 

38 lines
994 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. python_requires=">3.7",
  21. install_requires=[
  22. 'pysnmp',
  23. 'pysnmp-mibs',
  24. 'mock',
  25. 'pyasn1==0.4.8',
  26. ],
  27. extras_require = {
  28. 'dev': [ 'coverage' ],
  29. },
  30. entry_points={
  31. 'console_scripts': [
  32. 'vlanmang = vlanmang.__main__:main',
  33. ]
  34. }
  35. )