Skip to content

Commit

Permalink
Prepare for publishing to PyPi
Browse files Browse the repository at this point in the history
  • Loading branch information
iDebugAll committed Jun 4, 2020
1 parent ab2623e commit a6bad0e
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 4 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2020 iDebugAll
Copyright (c) 2020 Igor Korotchenkov

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
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 *
2 changes: 1 addition & 1 deletion nextbox_ui_plugin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
21 changes: 19 additions & 2 deletions setup.py
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',
],
)

0 comments on commit a6bad0e

Please sign in to comment.