mirror of
https://github.com/drygdryg/netbox-plugin-interface-sync
synced 2024-11-25 18:10:52 +03:00
Added long description
This commit is contained in:
parent
21065e2b96
commit
8ec9de6202
@ -5,7 +5,7 @@ class Config(PluginConfig):
|
|||||||
name = 'netbox_interface_sync'
|
name = 'netbox_interface_sync'
|
||||||
verbose_name = 'NetBox interface synchronization'
|
verbose_name = 'NetBox interface synchronization'
|
||||||
description = 'Syncing interfaces with the interfaces from device type for NetBox devices'
|
description = 'Syncing interfaces with the interfaces from device type for NetBox devices'
|
||||||
version = '0.1'
|
version = '0.1.2'
|
||||||
author = 'Victor Golovanenko'
|
author = 'Victor Golovanenko'
|
||||||
author_email = 'drygdryg2014@yandex.ru'
|
author_email = 'drygdryg2014@yandex.ru'
|
||||||
default_settings = {
|
default_settings = {
|
||||||
|
7
setup.py
7
setup.py
@ -1,9 +1,14 @@
|
|||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
|
with open('README.md', encoding='utf-8') as f:
|
||||||
|
long_description = f.read()
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='netbox-interface-sync',
|
name='netbox-interface-sync',
|
||||||
version='0.1',
|
version='0.1.2',
|
||||||
description='Syncing interfaces with the interfaces from device type for NetBox devices',
|
description='Syncing interfaces with the interfaces from device type for NetBox devices',
|
||||||
|
long_description=long_description,
|
||||||
|
long_description_content_type='text/markdown',
|
||||||
author='Victor Golovanenko',
|
author='Victor Golovanenko',
|
||||||
author_email='drygdryg2014@yandex.com',
|
author_email='drygdryg2014@yandex.com',
|
||||||
license='GPL-3.0',
|
license='GPL-3.0',
|
||||||
|
Loading…
Reference in New Issue
Block a user