-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
22 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include README.md | ||
include LICENSE | ||
recursive-include nextbox_ui_plugin/templates * | ||
recursive-include nextbox_ui_plugin/static * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ class NextBoxUIConfig(PluginConfig): | |
name = 'nextbox_ui_plugin' | ||
verbose_name = 'NextBox UI' | ||
description = 'Test' | ||
version = '0.4' | ||
version = '0.4.1' | ||
author = 'Igor Korotchenkov' | ||
author_email = '[email protected]' | ||
base_url = 'nextbox-ui' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,29 @@ | ||
from setuptools import find_packages, setup | ||
|
||
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='nextbox_ui_plugin', | ||
version='0.4', | ||
description='Netbox Topology Plugin', | ||
version='0.4.1', | ||
url='https://github.com/iDebugAll/nextbox-ui-plugin', | ||
description='A topology visualization plugin for Netbox powered by NextUI Toolkit.', | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
author='Igor Korotchenkov', | ||
author_email='[email protected]', | ||
install_requires=[], | ||
packages=find_packages(), | ||
license='MIT', | ||
include_package_data=True, | ||
keywords=['netbox', 'netbox-plugin', 'plugin'], | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
], | ||
) |