-
Notifications
You must be signed in to change notification settings - Fork 16
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
5 changed files
with
24 additions
and
29 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
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
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,34 +1,19 @@ | ||
import os | ||
from setuptools import find_packages, setup | ||
|
||
description = """ | ||
Enhance your secret management with encrypted storage and flexible, user-friendly features, seamlessly integrated into | ||
the NetBox environment. | ||
""" | ||
description = "Enhance your secret management with encrypted storage and flexible, user-friendly features." | ||
|
||
long_description=""" | ||
# NetBox Secrets | ||
readme = os.path.join(os.path.dirname(__file__), 'README.md') | ||
|
||
NetBox Secrets is a comprehensive overhaul of the original NetBox Secretstore plugin. It's designed to address the | ||
limitations and maintenance challenges of the predecessor. This plugin introduces significant enhancements in terms of | ||
flexibility and usability, ensuring seamless integration with the latest NetBox versions. | ||
## Key Features: | ||
- Employs RSA public key cryptography for secure storage of secrets in the database. | ||
- Allows secrets to be assigned to any object in NetBox, enhancing the plugin’s applicability and utility. | ||
- Enables assigning secrets to contacts, ideal for scenarios like linking SSH keys with specific individuals. | ||
- The redesigned interface is more intuitive and user-friendly, streamlining navigation and secret management. | ||
- Continuous testing with the latest NetBox releases ensures consistent compatibility and reliability. | ||
NetBox Secrets is committed to bridging the gap between robust security needs and an optimal user experience in NetBox | ||
environments. | ||
""" | ||
with open(readme) as fh: | ||
long_description = fh.read() | ||
|
||
setup( | ||
name='netbox-secrets', | ||
version='1.9.1', | ||
version='1.9.2', | ||
description=description, | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url='https://github.com/Onemind-Services-LLC/netbox-secrets/', | ||
author='Abhimanyu Saharan', | ||
author_email='[email protected]', | ||
|