2021-04-20 10:22:26 +03:00
|
|
|
from setuptools import setup
|
|
|
|
|
2021-04-24 21:52:17 +03:00
|
|
|
with open('README.md', encoding='utf-8') as f:
|
|
|
|
long_description = f.read()
|
|
|
|
|
2021-04-20 10:22:26 +03:00
|
|
|
setup(
|
|
|
|
name='netbox-interface-sync',
|
2021-10-30 12:27:25 +03:00
|
|
|
version='0.2.0',
|
2021-04-20 10:22:26 +03:00
|
|
|
description='Syncing interfaces with the interfaces from device type for NetBox devices',
|
2021-04-24 21:52:17 +03:00
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type='text/markdown',
|
2021-04-20 10:22:26 +03:00
|
|
|
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',
|
2022-01-21 11:42:37 +03:00
|
|
|
install_requires=['attrs>=21.1.0'],
|
2021-04-20 10:22:26 +03:00
|
|
|
packages=["netbox_interface_sync"],
|
|
|
|
package_data={"netbox_interface_sync": ["templates/netbox_interface_sync/*.html"]},
|
|
|
|
zip_safe=False
|
|
|
|
)
|