Skip to content

Commit

Permalink
clipassgen v0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
smartlegionlab committed Jun 16, 2024
1 parent d0bafa9 commit 026fd43
Show file tree
Hide file tree
Showing 13 changed files with 24 additions and 17 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
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ include requirements.txt
include setup.cfg
include setup.py
global-exclude data/*
global-exclude requirements/*
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# clipassgen <sup>v0.5.0</sup>
# clipassgen <sup>v0.5.1</sup>

***

Expand All @@ -20,7 +20,7 @@ cryptographically strong, recoverable, smart passwords.

***

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

***

Expand Down Expand Up @@ -121,7 +121,7 @@ It will be impossible to restore it.
--------------------------------------------------------
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 clipassgen.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 clipassgen/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# --------------------------------------------------------
# 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
# --------------------------------------------------------
"""Cross-platform console utility for generating
cryptographically strong, recoverable, smart passwords."""
__version__ = '0.5.0'
__version__ = '0.5.1'
2 changes: 1 addition & 1 deletion clipassgen/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 Down
2 changes: 1 addition & 1 deletion clipassgen/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
2 changes: 1 addition & 1 deletion clipassgen/config.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 clipassgen/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 @@ -16,6 +16,6 @@ class CliMan(Informer):
title = 'CliPassGen'
description = 'Console Smart Password Generator'
version = __version__
copyright = 'Copyright © 2024, A.A Suvorov'
copyright = 'Copyright © 2024, A.A. Suvorov'
url = 'https://github.com/smartlegionlab'
commander = CommandMan()
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
click~=8.0.1
smartcliapp~=0.4.0
smartpasslib~=0.4.0
smartpasslib~=0.4.0
6 changes: 6 additions & 0 deletions requirements/requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
setuptools
wheel
twine
click~=8.0.1
smartcliapp~=0.4.0
smartpasslib~=0.4.0
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[metadata]
name = clipassgen
version = 0.5.0
author = A.A Suvorov
version = 0.5.1
author = A.A. Suvorov
author_email = [email protected]
description = Cross-platform console utility for generating cryptographically strong, recoverable, smart passwords.
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 026fd43

Please sign in to comment.