-
-
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.
* refactor(packaging): Use setup.cfg * fix: linter * chore: Drop Python 3.7 support * chore: leftovers * chore: Bump min cryptography package * chore: refactoring * chore: refactor, bump versions
- Loading branch information
Showing
10 changed files
with
53 additions
and
71 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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
repos: | ||
- repo: git@github.com:PyCQA/isort.git | ||
rev: 5.10.1 | ||
rev: 5.12.0 | ||
hooks: | ||
- id: isort | ||
- repo: git@github.com:psf/black.git | ||
rev: 22.3.0 | ||
rev: 23.7.0 | ||
hooks: | ||
- id: black |
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 +0,0 @@ | ||
__version__ = "1.0.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
black>=22.3.0 | ||
isort>=5.10.1 | ||
pre-commit>=2.19.0 | ||
black>=23.7.0 | ||
isort>=5.12.0 | ||
pre-commit>=3.3.3 |
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,38 @@ | ||
[metadata] | ||
name = aes_pkcs5 | ||
version = 1.0.2 | ||
description = Implementation of AES with CBC/ECB mode and padding scheme PKCS5 | ||
long_description = file: README.rst | ||
long_description_content_type = text/x-rst | ||
author = Laerte Pereira | ||
author_email = hi@laerte.dev | ||
license = BSD License | ||
url = https://github.com/Laerte/aes_pkcs5 | ||
project_urls = | ||
Documentation = https://aes-pkcs5.readthedocs.io | ||
Source = https://github.com/Laerte/aes_pkcs5 | ||
Tracker = https://github.com/Laerte/aes_pkcs5/issues | ||
classifiers = | ||
Intended Audience :: Developers | ||
Development Status :: 5 - Production/Stable | ||
Operating System :: OS Independent | ||
License :: OSI Approved :: BSD License | ||
Programming Language :: Python | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
Programming Language :: Python :: 3.10 | ||
Programming Language :: Python :: 3.11 | ||
Programming Language :: Python :: Implementation :: CPython | ||
Programming Language :: Python :: Implementation :: PyPy | ||
Topic :: Software Development :: Libraries :: Python Modules | ||
|
||
[options] | ||
packages = find: | ||
python_requires = >=3.8 | ||
install_requires = | ||
cryptography >= 41.0.2 | ||
|
||
[options.packages.find] | ||
include = aes_pkcs5* | ||
exclude = tests.* |
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