diff --git a/setup.py b/setup.py index fa1038d..f2aa042 100644 --- a/setup.py +++ b/setup.py @@ -1,16 +1,23 @@ from setuptools import setup, find_packages +from os import path +top_level_directory = path.abspath(path.dirname(__file__)) +with open(path.join(top_level_directory, 'README.md'), encoding='utf-8') as file: + long_description = file.read() setup( name='netbox-topology-views', version='2.0.2', description='An NetBox plugin to create Topology maps', + long_description=long_description, + long_description_content_type='text/markdown', url='https://github.com/mattieserver/netbox-topology-views', author='Mattijs Vanhaverbeke', license='Apache 2.0', install_requires=[], packages=find_packages(), include_package_data=True, + keywords=['netbox-plugin'], classifiers=[ 'Programming Language :: Python', 'Programming Language :: Python :: 3',