Added long description

This commit is contained in:
Victor Golovanenko 2021-04-24 21:52:17 +03:00
parent 21065e2b96
commit 8ec9de6202
No known key found for this signature in database
GPG Key ID: 49B2AA9695DBD79F
2 changed files with 7 additions and 2 deletions

View File

@ -5,7 +5,7 @@ class Config(PluginConfig):
name = 'netbox_interface_sync'
verbose_name = 'NetBox interface synchronization'
description = 'Syncing interfaces with the interfaces from device type for NetBox devices'
version = '0.1'
version = '0.1.2'
author = 'Victor Golovanenko'
author_email = 'drygdryg2014@yandex.ru'
default_settings = {

View File

@ -1,9 +1,14 @@
from setuptools import setup
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name='netbox-interface-sync',
version='0.1',
version='0.1.2',
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_email='drygdryg2014@yandex.com',
license='GPL-3.0',