-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d0bafa9
commit 026fd43
Showing
13 changed files
with
24 additions
and
17 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 |
---|---|---|
|
@@ -4,3 +4,4 @@ include requirements.txt | |
include setup.cfg | ||
include setup.py | ||
global-exclude data/* | ||
global-exclude requirements/* |
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
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 |
---|---|---|
@@ -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' |
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
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
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
click~=8.0.1 | ||
smartcliapp~=0.4.0 | ||
smartpasslib~=0.4.0 | ||
smartpasslib~=0.4.0 |
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,6 @@ | ||
setuptools | ||
wheel | ||
twine | ||
click~=8.0.1 | ||
smartcliapp~=0.4.0 | ||
smartpasslib~=0.4.0 |
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 |
---|---|---|
@@ -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 | ||
|
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 |
---|---|---|
@@ -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")), | ||
) |