github-ssh-key 0.4.1__tar.gz → 0.4.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (19) hide show
  1. {github_ssh_key-0.4.1/github_ssh_key.egg-info → github_ssh_key-0.4.2}/PKG-INFO +6 -4
  2. {github_ssh_key-0.4.1 → github_ssh_key-0.4.2}/README.md +3 -2
  3. {github_ssh_key-0.4.1 → github_ssh_key-0.4.2}/github_ssh_key/__init__.py +2 -2
  4. {github_ssh_key-0.4.1 → github_ssh_key-0.4.2}/github_ssh_key/app.py +2 -2
  5. {github_ssh_key-0.4.1 → github_ssh_key-0.4.2}/github_ssh_key/commander.py +1 -1
  6. {github_ssh_key-0.4.1 → github_ssh_key-0.4.2}/github_ssh_key/manager.py +2 -2
  7. {github_ssh_key-0.4.1 → github_ssh_key-0.4.2/github_ssh_key.egg-info}/PKG-INFO +6 -4
  8. {github_ssh_key-0.4.1 → github_ssh_key-0.4.2}/setup.py +1 -1
  9. {github_ssh_key-0.4.1 → github_ssh_key-0.4.2}/LICENSE +0 -0
  10. {github_ssh_key-0.4.1 → github_ssh_key-0.4.2}/MANIFEST.in +0 -0
  11. {github_ssh_key-0.4.1 → github_ssh_key-0.4.2}/github_ssh_key.egg-info/SOURCES.txt +0 -0
  12. {github_ssh_key-0.4.1 → github_ssh_key-0.4.2}/github_ssh_key.egg-info/dependency_links.txt +0 -0
  13. {github_ssh_key-0.4.1 → github_ssh_key-0.4.2}/github_ssh_key.egg-info/entry_points.txt +0 -0
  14. {github_ssh_key-0.4.1 → github_ssh_key-0.4.2}/github_ssh_key.egg-info/not-zip-safe +0 -0
  15. {github_ssh_key-0.4.1 → github_ssh_key-0.4.2}/github_ssh_key.egg-info/requires.txt +0 -0
  16. {github_ssh_key-0.4.1 → github_ssh_key-0.4.2}/github_ssh_key.egg-info/top_level.txt +0 -0
  17. {github_ssh_key-0.4.1 → github_ssh_key-0.4.2}/requirements.txt +0 -0
  18. {github_ssh_key-0.4.1 → github_ssh_key-0.4.2}/setup.cfg +0 -0
  19. {github_ssh_key-0.4.1 → github_ssh_key-0.4.2}/tox.ini +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: github-ssh-key
3
- Version: 0.4.1
3
+ Version: 0.4.2
4
4
  Summary: GitHub ssh key manager. Console utility for creating, getting, testing, using public ssh keys for GitHub.
5
5
  Home-page: https://github.com/smartlegionlab/github-ssh-key/
6
6
  Author: A.A. Suvorov
@@ -26,12 +26,14 @@ Description-Content-Type: text/markdown
26
26
  License-File: LICENSE
27
27
  Requires-Dist: click~=8.0.1
28
28
  Requires-Dist: smartcliapp~=0.4.0
29
+ Dynamic: license-file
29
30
 
30
- # github-ssh-key <sup>v0.4.1</sup>
31
+ # github-ssh-key <sup>v0.4.2</sup>
31
32
  ___github-ssh-key___ - GitHub ssh key manager. Console utility for creating, getting, testing,
32
33
  using public ssh keys for GitHub.
33
34
  ***
34
35
 
36
+ [![PyPI Downloads](https://static.pepy.tech/badge/github-ssh-key)](https://pepy.tech/projects/github-ssh-key)
35
37
  ![GitHub top language](https://img.shields.io/github/languages/top/smartlegionlab/github-ssh-key)
36
38
  [![PyPI - Downloads](https://img.shields.io/pypi/dm/github-ssh-key?label=pypi%20downloads)](https://pypi.org/project/github-ssh-key/)
37
39
  [![GitHub release (latest by date)](https://img.shields.io/github/v/release/smartlegionlab/github-ssh-key)](https://github.com/smartlegionlab/github-ssh-key/)
@@ -191,6 +193,6 @@ To get help with commands, use:
191
193
  --------------------------------------------------------
192
194
  Licensed under the terms of the BSD 3-Clause License
193
195
  (see LICENSE for details).
194
- Copyright © 2018-2024, A.A. Suvorov
196
+ Copyright © 2018-2025, A.A. Suvorov
195
197
  All rights reserved.
196
198
  --------------------------------------------------------
@@ -1,8 +1,9 @@
1
- # github-ssh-key <sup>v0.4.1</sup>
1
+ # github-ssh-key <sup>v0.4.2</sup>
2
2
  ___github-ssh-key___ - GitHub ssh key manager. Console utility for creating, getting, testing,
3
3
  using public ssh keys for GitHub.
4
4
  ***
5
5
 
6
+ [![PyPI Downloads](https://static.pepy.tech/badge/github-ssh-key)](https://pepy.tech/projects/github-ssh-key)
6
7
  ![GitHub top language](https://img.shields.io/github/languages/top/smartlegionlab/github-ssh-key)
7
8
  [![PyPI - Downloads](https://img.shields.io/pypi/dm/github-ssh-key?label=pypi%20downloads)](https://pypi.org/project/github-ssh-key/)
8
9
  [![GitHub release (latest by date)](https://img.shields.io/github/v/release/smartlegionlab/github-ssh-key)](https://github.com/smartlegionlab/github-ssh-key/)
@@ -162,6 +163,6 @@ To get help with commands, use:
162
163
  --------------------------------------------------------
163
164
  Licensed under the terms of the BSD 3-Clause License
164
165
  (see LICENSE for details).
165
- Copyright © 2018-2024, A.A. Suvorov
166
+ Copyright © 2018-2025, A.A. Suvorov
166
167
  All rights reserved.
167
168
  --------------------------------------------------------
@@ -1,10 +1,10 @@
1
1
  # --------------------------------------------------------
2
2
  # Licensed under the terms of the BSD 3-Clause License
3
3
  # (see LICENSE for details).
4
- # Copyright © 2018-2024, A.A. Suvorov
4
+ # Copyright © 2018-2025, A.A. Suvorov
5
5
  # All rights reserved.
6
6
  # --------------------------------------------------------
7
7
  # https://github.com/smartlegionlab
8
8
  # --------------------------------------------------------
9
9
  """GitHub ssh key manager."""
10
- __version__ = '0.4.1'
10
+ __version__ = '0.4.2'
@@ -1,7 +1,7 @@
1
1
  # --------------------------------------------------------
2
2
  # Licensed under the terms of the BSD 3-Clause License
3
3
  # (see LICENSE for details).
4
- # Copyright © 2018-2024, A.A. Suvorov
4
+ # Copyright © 2018-2025, A.A. Suvorov
5
5
  # All rights reserved.
6
6
  # --------------------------------------------------------
7
7
  # https://github.com/smartlegionlab
@@ -21,7 +21,7 @@ def cli(ctx):
21
21
  """
22
22
  GitHub ssh key manager.
23
23
 
24
- Copyright © 2018-2024, A.A. Suvorov; All rights reserved.
24
+ Copyright © 2018-2025, A.A. Suvorov; All rights reserved.
25
25
 
26
26
  https://github.com/smartlegionlab/
27
27
 
@@ -1,7 +1,7 @@
1
1
  # -------------------------------------------------------
2
2
  # Licensed under the terms of the BSD 3-Clause License
3
3
  # (see LICENSE for details).
4
- # Copyright © 2018-2024, A.A. Suvorov
4
+ # Copyright © 2018-2025, A.A. Suvorov
5
5
  # All rights reserved.
6
6
  # -------------------------------------------------------
7
7
  # https://github.com/smartlegionlab
@@ -1,7 +1,7 @@
1
1
  # --------------------------------------------------------
2
2
  # Licensed under the terms of the BSD 3-Clause License
3
3
  # (see LICENSE for details).
4
- # Copyright © 2018-2024, A.A. Suvorov
4
+ # Copyright © 2018-2025, A.A. Suvorov
5
5
  # All rights reserved.
6
6
  # --------------------------------------------------------
7
7
  # https://github.com/smartlegionlab
@@ -18,5 +18,5 @@ class CliManager(Informer):
18
18
  title = "Smart Legion Lab"
19
19
  description = "Github Ssh Key Manager"
20
20
  url = "https://github.com/smartlegionlab"
21
- copyright = "Copyright © 2018-2024, A.A. Suvorov"
21
+ copyright = "Copyright © 2018-2025, A.A. Suvorov"
22
22
  version = __version__
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: github-ssh-key
3
- Version: 0.4.1
3
+ Version: 0.4.2
4
4
  Summary: GitHub ssh key manager. Console utility for creating, getting, testing, using public ssh keys for GitHub.
5
5
  Home-page: https://github.com/smartlegionlab/github-ssh-key/
6
6
  Author: A.A. Suvorov
@@ -26,12 +26,14 @@ Description-Content-Type: text/markdown
26
26
  License-File: LICENSE
27
27
  Requires-Dist: click~=8.0.1
28
28
  Requires-Dist: smartcliapp~=0.4.0
29
+ Dynamic: license-file
29
30
 
30
- # github-ssh-key <sup>v0.4.1</sup>
31
+ # github-ssh-key <sup>v0.4.2</sup>
31
32
  ___github-ssh-key___ - GitHub ssh key manager. Console utility for creating, getting, testing,
32
33
  using public ssh keys for GitHub.
33
34
  ***
34
35
 
36
+ [![PyPI Downloads](https://static.pepy.tech/badge/github-ssh-key)](https://pepy.tech/projects/github-ssh-key)
35
37
  ![GitHub top language](https://img.shields.io/github/languages/top/smartlegionlab/github-ssh-key)
36
38
  [![PyPI - Downloads](https://img.shields.io/pypi/dm/github-ssh-key?label=pypi%20downloads)](https://pypi.org/project/github-ssh-key/)
37
39
  [![GitHub release (latest by date)](https://img.shields.io/github/v/release/smartlegionlab/github-ssh-key)](https://github.com/smartlegionlab/github-ssh-key/)
@@ -191,6 +193,6 @@ To get help with commands, use:
191
193
  --------------------------------------------------------
192
194
  Licensed under the terms of the BSD 3-Clause License
193
195
  (see LICENSE for details).
194
- Copyright © 2018-2024, A.A. Suvorov
196
+ Copyright © 2018-2025, A.A. Suvorov
195
197
  All rights reserved.
196
198
  --------------------------------------------------------
@@ -1,7 +1,7 @@
1
1
  # --------------------------------------------------------
2
2
  # Licensed under the terms of the BSD 3-Clause License
3
3
  # (see LICENSE for details).
4
- # Copyright © 2018-2024, A.A. Suvorov
4
+ # Copyright © 2018-2025, A.A. Suvorov
5
5
  # All rights reserved.
6
6
  # --------------------------------------------------------
7
7
  # https://github.com/smartlegionlab
File without changes
File without changes
File without changes