netbox-plugin-interface-sync/setup.py
Victor Golovanenko d0b7fb5c44
Initial commit
2021-04-20 07:26:48 +00:00

14 lines
427 B
Python

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',
license='GPL-3.0',
install_requires=[],
packages=["netbox_interface_sync"],
package_data={"netbox_interface_sync": ["templates/netbox_interface_sync/*.html"]},
zip_safe=False
)