Skip to content

Commit a6bad0e

Browse files
committed
Prepare for publishing to PyPi
1 parent ab2623e commit a6bad0e

File tree

4 files changed

+22
-4
lines changed

4 files changed

+22
-4
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 iDebugAll
3+
Copyright (c) 2020 Igor Korotchenkov
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
include README.md
2+
include LICENSE
23
recursive-include nextbox_ui_plugin/templates *
34
recursive-include nextbox_ui_plugin/static *

nextbox_ui_plugin/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ class NextBoxUIConfig(PluginConfig):
44
name = 'nextbox_ui_plugin'
55
verbose_name = 'NextBox UI'
66
description = 'Test'
7-
version = '0.4'
7+
version = '0.4.1'
88
author = 'Igor Korotchenkov'
99
author_email = 'iDebugAll@gmail.com'
1010
base_url = 'nextbox-ui'

setup.py

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,29 @@
11
from setuptools import find_packages, setup
22

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+
38
setup(
49
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',
715
author='Igor Korotchenkov',
816
author_email='iDebugAll@gmail.com',
917
install_requires=[],
1018
packages=find_packages(),
19+
license='MIT',
1120
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+
],
1229
)

0 commit comments

Comments
 (0)