netbox-plugin-interface-sync/setup.py

15 lines
472 B
Python
Raw Normal View History

2021-04-20 10:22:26 +03:00
from setuptools import setup
setup(
name='netbox-interface-sync',
version='0.1',
description='Syncing interfaces with the interfaces from device type for NetBox devices',
author='Victor Golovanenko',
2021-04-24 21:45:34 +03:00
author_email='drygdryg2014@yandex.com',
2021-04-20 10:22:26 +03:00
license='GPL-3.0',
install_requires=[],
packages=["netbox_interface_sync"],
package_data={"netbox_interface_sync": ["templates/netbox_interface_sync/*.html"]},
zip_safe=False
)