Skip to content

Commit

Permalink
GitHub SSH Key v0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
smartlegionlab committed Jun 16, 2024
1 parent 524743f commit affdb54
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BSD 3-Clause License

Copyright (c) 2024, A.A Suvorov
Copyright (c) 2024, A.A. Suvorov

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# github-ssh-key
# github-ssh-key <sup>v0.4.1</sup>
___github-ssh-key___ - GitHub ssh key manager. Console utility for creating, getting, testing,
using public ssh keys for GitHub.
***
Expand All @@ -15,7 +15,7 @@ using public ssh keys for GitHub.

***

Author and developer: ___A.A Suvorov___
Author and developer: ___A.A. Suvorov___

***

Expand Down Expand Up @@ -162,6 +162,6 @@ To get help with commands, use:
--------------------------------------------------------
Licensed under the terms of the BSD 3-Clause License
(see LICENSE for details).
Copyright © 2018-2024, A.A Suvorov
Copyright © 2018-2024, A.A. Suvorov
All rights reserved.
--------------------------------------------------------
2 changes: 1 addition & 1 deletion github-ssh-key.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# --------------------------------------------------------
# Licensed under the terms of the BSD 3-Clause License
# (see LICENSE for details).
# Copyright © 2018-2024, A.A Suvorov
# Copyright © 2018-2024, A.A. Suvorov
# All rights reserved.
# --------------------------------------------------------
# https://github.com/smartlegionlab
Expand Down
4 changes: 2 additions & 2 deletions github_ssh_key/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# --------------------------------------------------------
# Licensed under the terms of the BSD 3-Clause License
# (see LICENSE for details).
# Copyright © 2018-2024, A.A Suvorov
# Copyright © 2018-2024, A.A. Suvorov
# All rights reserved.
# --------------------------------------------------------
# https://github.com/smartlegionlab
# --------------------------------------------------------
"""GitHub ssh key manager."""
__version__ = '0.4.0'
__version__ = '0.4.1'
4 changes: 2 additions & 2 deletions github_ssh_key/app.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# --------------------------------------------------------
# Licensed under the terms of the BSD 3-Clause License
# (see LICENSE for details).
# Copyright © 2018-2024, A.A Suvorov
# Copyright © 2018-2024, A.A. Suvorov
# All rights reserved.
# --------------------------------------------------------
# https://github.com/smartlegionlab
Expand All @@ -21,7 +21,7 @@ def cli(ctx):
"""
GitHub ssh key manager.
Copyright © 2018-2024, A.A Suvorov; All rights reserved.
Copyright © 2018-2024, A.A. Suvorov; All rights reserved.
https://github.com/smartlegionlab/
Expand Down
2 changes: 1 addition & 1 deletion github_ssh_key/commander.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -------------------------------------------------------
# Licensed under the terms of the BSD 3-Clause License
# (see LICENSE for details).
# Copyright © 2018-2024, A.A Suvorov
# Copyright © 2018-2024, A.A. Suvorov
# All rights reserved.
# -------------------------------------------------------
# https://github.com/smartlegionlab
Expand Down
4 changes: 2 additions & 2 deletions github_ssh_key/manager.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# --------------------------------------------------------
# Licensed under the terms of the BSD 3-Clause License
# (see LICENSE for details).
# Copyright © 2018-2024, A.A Suvorov
# Copyright © 2018-2024, A.A. Suvorov
# All rights reserved.
# --------------------------------------------------------
# https://github.com/smartlegionlab
Expand All @@ -18,5 +18,5 @@ class CliManager(Informer):
title = "Smart Legion Lab"
description = "Github Ssh Key Manager"
url = "https://github.com/smartlegionlab"
copyright = "Copyright © 2018-2024, A.A Suvorov"
copyright = "Copyright © 2018-2024, A.A. Suvorov"
version = __version__
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[metadata]
name = github-ssh-key
version = attr: github_ssh_key.__version__
author = A.A Suvorov
author = A.A. Suvorov
author_email = smartlegiondev@gmail.com
description = GitHub ssh key manager. Console utility for creating, getting, testing, using public ssh keys for GitHub.
long_description = file: README.md
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# --------------------------------------------------------
# Licensed under the terms of the BSD 3-Clause License
# (see LICENSE for details).
# Copyright © 2018-2024, A.A Suvorov
# Copyright © 2018-2024, A.A. Suvorov
# All rights reserved.
# --------------------------------------------------------
# https://github.com/smartlegionlab
# --------------------------------------------------------
from setuptools import setup, find_packages

setup(
packages=find_packages(exclude=("tests", "data", "requirements")),
packages=find_packages(exclude=("data", "requirements")),
)

0 comments on commit affdb54

Please sign in to comment.