|
1 | 1 | from setuptools import find_packages, setup |
2 | 2 |
|
| 3 | +from os import path |
| 4 | +top_level_directory = path.abspath(path.dirname(__file__)) |
| 5 | +with open(path.join(top_level_directory, 'README.md'), encoding='utf-8') as file: |
| 6 | + long_description = file.read() |
| 7 | + |
3 | 8 | setup( |
4 | 9 | name='nextbox_ui_plugin', |
5 | | - version='0.4', |
6 | | - description='Netbox Topology Plugin', |
| 10 | + version='0.4.1', |
| 11 | + url='https://github.com/iDebugAll/nextbox-ui-plugin', |
| 12 | + description='A topology visualization plugin for Netbox powered by NextUI Toolkit.', |
| 13 | + long_description=long_description, |
| 14 | + long_description_content_type='text/markdown', |
7 | 15 | author='Igor Korotchenkov', |
8 | 16 | author_email='iDebugAll@gmail.com', |
9 | 17 | install_requires=[], |
10 | 18 | packages=find_packages(), |
| 19 | + license='MIT', |
11 | 20 | include_package_data=True, |
| 21 | + keywords=['netbox', 'netbox-plugin', 'plugin'], |
| 22 | + classifiers=[ |
| 23 | + 'Development Status :: 4 - Beta', |
| 24 | + 'Programming Language :: Python :: 3', |
| 25 | + 'Programming Language :: Python :: 3.6', |
| 26 | + 'Programming Language :: Python :: 3.7', |
| 27 | + 'Programming Language :: Python :: 3.8', |
| 28 | + ], |
12 | 29 | ) |
0 commit comments