Skip to content

Commit affdb54

Browse files
GitHub SSH Key v0.4.1
1 parent 524743f commit affdb54

File tree

9 files changed

+15
-15
lines changed

9 files changed

+15
-15
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 3-Clause License
22

3-
Copyright (c) 2024, A.A Suvorov
3+
Copyright (c) 2024, A.A. Suvorov
44

55
Redistribution and use in source and binary forms, with or without
66
modification, are permitted provided that the following conditions are met:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# github-ssh-key
1+
# github-ssh-key <sup>v0.4.1</sup>
22
___github-ssh-key___ - GitHub ssh key manager. Console utility for creating, getting, testing,
33
using public ssh keys for GitHub.
44
***
@@ -15,7 +15,7 @@ using public ssh keys for GitHub.
1515

1616
***
1717

18-
Author and developer: ___A.A Suvorov___
18+
Author and developer: ___A.A. Suvorov___
1919

2020
***
2121

@@ -162,6 +162,6 @@ To get help with commands, use:
162162
--------------------------------------------------------
163163
Licensed under the terms of the BSD 3-Clause License
164164
(see LICENSE for details).
165-
Copyright © 2018-2024, A.A Suvorov
165+
Copyright © 2018-2024, A.A. Suvorov
166166
All rights reserved.
167167
--------------------------------------------------------

github-ssh-key.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# --------------------------------------------------------
22
# Licensed under the terms of the BSD 3-Clause License
33
# (see LICENSE for details).
4-
# Copyright © 2018-2024, A.A Suvorov
4+
# Copyright © 2018-2024, A.A. Suvorov
55
# All rights reserved.
66
# --------------------------------------------------------
77
# https://github.com/smartlegionlab

github_ssh_key/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# --------------------------------------------------------
22
# Licensed under the terms of the BSD 3-Clause License
33
# (see LICENSE for details).
4-
# Copyright © 2018-2024, A.A Suvorov
4+
# Copyright © 2018-2024, A.A. Suvorov
55
# All rights reserved.
66
# --------------------------------------------------------
77
# https://github.com/smartlegionlab
88
# --------------------------------------------------------
99
"""GitHub ssh key manager."""
10-
__version__ = '0.4.0'
10+
__version__ = '0.4.1'

github_ssh_key/app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# --------------------------------------------------------
22
# Licensed under the terms of the BSD 3-Clause License
33
# (see LICENSE for details).
4-
# Copyright © 2018-2024, A.A Suvorov
4+
# Copyright © 2018-2024, A.A. Suvorov
55
# All rights reserved.
66
# --------------------------------------------------------
77
# https://github.com/smartlegionlab
@@ -21,7 +21,7 @@ def cli(ctx):
2121
"""
2222
GitHub ssh key manager.
2323
24-
Copyright © 2018-2024, A.A Suvorov; All rights reserved.
24+
Copyright © 2018-2024, A.A. Suvorov; All rights reserved.
2525
2626
https://github.com/smartlegionlab/
2727

github_ssh_key/commander.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -------------------------------------------------------
22
# Licensed under the terms of the BSD 3-Clause License
33
# (see LICENSE for details).
4-
# Copyright © 2018-2024, A.A Suvorov
4+
# Copyright © 2018-2024, A.A. Suvorov
55
# All rights reserved.
66
# -------------------------------------------------------
77
# https://github.com/smartlegionlab

github_ssh_key/manager.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# --------------------------------------------------------
22
# Licensed under the terms of the BSD 3-Clause License
33
# (see LICENSE for details).
4-
# Copyright © 2018-2024, A.A Suvorov
4+
# Copyright © 2018-2024, A.A. Suvorov
55
# All rights reserved.
66
# --------------------------------------------------------
77
# https://github.com/smartlegionlab
@@ -18,5 +18,5 @@ class CliManager(Informer):
1818
title = "Smart Legion Lab"
1919
description = "Github Ssh Key Manager"
2020
url = "https://github.com/smartlegionlab"
21-
copyright = "Copyright © 2018-2024, A.A Suvorov"
21+
copyright = "Copyright © 2018-2024, A.A. Suvorov"
2222
version = __version__

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[metadata]
22
name = github-ssh-key
33
version = attr: github_ssh_key.__version__
4-
author = A.A Suvorov
4+
author = A.A. Suvorov
55
author_email = smartlegiondev@gmail.com
66
description = GitHub ssh key manager. Console utility for creating, getting, testing, using public ssh keys for GitHub.
77
long_description = file: README.md

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# --------------------------------------------------------
22
# Licensed under the terms of the BSD 3-Clause License
33
# (see LICENSE for details).
4-
# Copyright © 2018-2024, A.A Suvorov
4+
# Copyright © 2018-2024, A.A. Suvorov
55
# All rights reserved.
66
# --------------------------------------------------------
77
# https://github.com/smartlegionlab
88
# --------------------------------------------------------
99
from setuptools import setup, find_packages
1010

1111
setup(
12-
packages=find_packages(exclude=("tests", "data", "requirements")),
12+
packages=find_packages(exclude=("data", "requirements")),
1313
)

0 commit comments

Comments
 (0)