-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from scheibling/main
Bugfixes, testing and linting
- Loading branch information
Showing
15 changed files
with
3,004 additions
and
812 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 |
---|---|---|
|
@@ -142,4 +142,7 @@ test_dss* | |
test_ed25519* | ||
test_flow.py | ||
temptest.py | ||
oldsrc/* | ||
oldsrc/* | ||
tempfolder | ||
report.html | ||
test_certificate |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[MASTER] | ||
load-plugins=pylint_report | ||
|
||
[REPORTS] | ||
output-format=pylint_report.CustomJsonReporter |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
click | ||
cryptography | ||
bcrypt | ||
enum34 | ||
paramiko | ||
coverage | ||
black | ||
pytest-cov | ||
faker |
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 |
---|---|---|
|
@@ -2,19 +2,19 @@ | |
import os | ||
|
||
# The title and description of the package | ||
__title__ = 'sshkey-tools' | ||
__description__ = ''' | ||
__title__ = "sshkey-tools" | ||
__description__ = """ | ||
A Python module for generating, parsing and handling OpenSSH keys and certificates | ||
''' | ||
""" | ||
|
||
# The version and build number | ||
# Without specifying a unique number, you cannot overwrite packages in the PyPi repo | ||
__version__ = os.getenv('RELEASE_NAME', '0.0.1-dev' + os.getenv('GITHUB_RUN_ID') ) | ||
__version__ = os.getenv("RELEASE_NAME", "0.0.1-dev" + os.getenv("GITHUB_RUN_ID")) | ||
|
||
# Author and license information | ||
__author__ = 'Lars Scheibling' | ||
__author_email__ = '[email protected]' | ||
__license__ = 'GnuPG 3.0' | ||
__author__ = "Lars Scheibling" | ||
__author_email__ = "[email protected]" | ||
__license__ = "GnuPG 3.0" | ||
|
||
# URL to the project | ||
__url__ = f"https://github.com/scheiblingco/{__title__}" |
Oops, something went wrong.