Skip to content

Commit

Permalink
Version Bump to bring to 1.0.9 for PyPi
Browse files Browse the repository at this point in the history
  • Loading branch information
DanSheps committed Nov 19, 2021
1 parent 0b61a4c commit bbdfbfd
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 14 deletions.
25 changes: 14 additions & 11 deletions netbox_secretstore/__init__.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,24 @@
from extras.plugins import PluginConfig


try:
from importlib.metadata import metadata
except ModuleNotFoundError:
from importlib_metadata import metadata

metadata = metadata('netbox_secretstore')


class NetBoxSecretStore(PluginConfig):
name = 'netbox_secretstore'
verbose_name = 'Netbox Secret Store'
description = 'A Secret Storage for NetBox'
version = '1.0.8'
author = 'NetBox Maintainers'
author_email = ''
name = metadata.get('Name').replace('-', '_')
verbose_name = metadata.get('Summary')
description = metadata.get('Description')
version = metadata.get('Version')
author = metadata.get('Author')
author_email = metadata.get('Author-email')
base_url = 'netbox_secretstore'
min_version = '3.0.0'
required_settings = []
caching_config = {
'*': {
'ops': 'all'
}
}
default_settings = {
'public_key_size': 2048
}
Expand Down
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,16 @@

setup(
name='netbox-secretstore',
version='1.0.8',
description='A Secret store for NetBox',
url='https://github.com/dansheps/netbox-secretstore',
version='1.0.9',
description='Netbox Secret Store',
long_description='A Secret store for NetBox',
url='https://github.com/dansheps/netbox-secretstore/',
download_url='https://www.pypi.org/project/netbox-secretstore/',
author='Daniel Sheppard',
author_email='[email protected]',
license='Apache 2.0',
install_requires=[
'importlib',
'pycryptodome',
'netbox-plugin-extensions'
],
Expand Down

0 comments on commit bbdfbfd

Please sign in to comment.