pyauthenticator 0.3.0__tar.gz → 0.3.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pyauthenticator-0.3.0 → pyauthenticator-0.3.1}/PKG-INFO +4 -4
- {pyauthenticator-0.3.0 → pyauthenticator-0.3.1}/README.md +1 -1
- {pyauthenticator-0.3.0 → pyauthenticator-0.3.1}/pyproject.toml +5 -5
- {pyauthenticator-0.3.0 → pyauthenticator-0.3.1}/src/pyauthenticator/__main__.py +0 -1
- pyauthenticator-0.3.1/src/pyauthenticator/_version.py +24 -0
- pyauthenticator-0.3.0/src/pyauthenticator/_version.py +0 -34
- {pyauthenticator-0.3.0 → pyauthenticator-0.3.1}/.gitignore +0 -0
- {pyauthenticator-0.3.0 → pyauthenticator-0.3.1}/LICENSE +0 -0
- {pyauthenticator-0.3.0 → pyauthenticator-0.3.1}/src/pyauthenticator/__init__.py +0 -0
- {pyauthenticator-0.3.0 → pyauthenticator-0.3.1}/src/pyauthenticator/_cmd.py +0 -0
- {pyauthenticator-0.3.0 → pyauthenticator-0.3.1}/src/pyauthenticator/_config.py +0 -0
- {pyauthenticator-0.3.0 → pyauthenticator-0.3.1}/src/pyauthenticator/_core.py +0 -0
- {pyauthenticator-0.3.0 → pyauthenticator-0.3.1}/src/pyauthenticator/_user.py +0 -0
- {pyauthenticator-0.3.0 → pyauthenticator-0.3.1}/src/pyauthenticator/api.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pyauthenticator
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.1
|
|
4
4
|
Summary: Similar to the Google authenticator just written in python.
|
|
5
5
|
Project-URL: Homepage, https://github.com/jan-janssen/pyauthenticator
|
|
6
6
|
Project-URL: Documentation, https://github.com/jan-janssen/pyauthenticator/blob/master/README.md
|
|
@@ -25,15 +25,15 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
25
25
|
Classifier: Topic :: Security
|
|
26
26
|
Classifier: Topic :: Utilities
|
|
27
27
|
Requires-Python: >=3.7
|
|
28
|
-
Requires-Dist: pillow>=
|
|
29
|
-
Requires-Dist: pyotp>=2.
|
|
28
|
+
Requires-Dist: pillow>=12.1.0
|
|
29
|
+
Requires-Dist: pyotp>=2.10.0
|
|
30
30
|
Requires-Dist: pyzbar>=0.1.9
|
|
31
31
|
Requires-Dist: qrcode>=8.2
|
|
32
32
|
Description-Content-Type: text/markdown
|
|
33
33
|
|
|
34
34
|
# pyauthenticator
|
|
35
35
|
[](https://github.com/jan-janssen/pyauthenticator/actions/workflows/pipeline.yml)
|
|
36
|
-
[](https://codecov.io/github/jan-janssen/pyauthenticator)
|
|
37
37
|
[](https://github.com/psf/black)
|
|
38
38
|
|
|
39
39
|
Similar to the Google authenticator just written in Python. With more and more services requiring two factor
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# pyauthenticator
|
|
2
2
|
[](https://github.com/jan-janssen/pyauthenticator/actions/workflows/pipeline.yml)
|
|
3
|
-
[](https://codecov.io/github/jan-janssen/pyauthenticator)
|
|
4
4
|
[](https://github.com/psf/black)
|
|
5
5
|
|
|
6
6
|
Similar to the Google authenticator just written in Python. With more and more services requiring two factor
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
[build-system]
|
|
2
2
|
requires = [
|
|
3
|
-
"hatchling>=1.
|
|
3
|
+
"hatchling>=1.28.0",
|
|
4
4
|
"hatch-vcs>=0.5.0",
|
|
5
|
-
"pyotp>=2.
|
|
5
|
+
"pyotp>=2.10.0",
|
|
6
6
|
"qrcode>=8.2",
|
|
7
7
|
"pyzbar>=0.1.9",
|
|
8
|
-
"pillow>=
|
|
8
|
+
"pillow>=12.1.0",
|
|
9
9
|
]
|
|
10
10
|
build-backend = "hatchling.build"
|
|
11
11
|
|
|
@@ -37,10 +37,10 @@ classifiers = [
|
|
|
37
37
|
"Topic :: Utilities",
|
|
38
38
|
]
|
|
39
39
|
dependencies = [
|
|
40
|
-
"pyotp>=2.
|
|
40
|
+
"pyotp>=2.10.0",
|
|
41
41
|
"qrcode>=8.2",
|
|
42
42
|
"pyzbar>=0.1.9",
|
|
43
|
-
"pillow>=
|
|
43
|
+
"pillow>=12.1.0",
|
|
44
44
|
]
|
|
45
45
|
|
|
46
46
|
[project.urls]
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# file generated by vcs-versioning
|
|
2
|
+
# don't change, don't track in version control
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
__all__ = [
|
|
6
|
+
"__version__",
|
|
7
|
+
"__version_tuple__",
|
|
8
|
+
"version",
|
|
9
|
+
"version_tuple",
|
|
10
|
+
"__commit_id__",
|
|
11
|
+
"commit_id",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
version: str
|
|
15
|
+
__version__: str
|
|
16
|
+
__version_tuple__: tuple[int | str, ...]
|
|
17
|
+
version_tuple: tuple[int | str, ...]
|
|
18
|
+
commit_id: str | None
|
|
19
|
+
__commit_id__: str | None
|
|
20
|
+
|
|
21
|
+
__version__ = version = '0.3.1'
|
|
22
|
+
__version_tuple__ = version_tuple = (0, 3, 1)
|
|
23
|
+
|
|
24
|
+
__commit_id__ = commit_id = None
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
# file generated by setuptools-scm
|
|
2
|
-
# don't change, don't track in version control
|
|
3
|
-
|
|
4
|
-
__all__ = [
|
|
5
|
-
"__version__",
|
|
6
|
-
"__version_tuple__",
|
|
7
|
-
"version",
|
|
8
|
-
"version_tuple",
|
|
9
|
-
"__commit_id__",
|
|
10
|
-
"commit_id",
|
|
11
|
-
]
|
|
12
|
-
|
|
13
|
-
TYPE_CHECKING = False
|
|
14
|
-
if TYPE_CHECKING:
|
|
15
|
-
from typing import Tuple
|
|
16
|
-
from typing import Union
|
|
17
|
-
|
|
18
|
-
VERSION_TUPLE = Tuple[Union[int, str], ...]
|
|
19
|
-
COMMIT_ID = Union[str, None]
|
|
20
|
-
else:
|
|
21
|
-
VERSION_TUPLE = object
|
|
22
|
-
COMMIT_ID = object
|
|
23
|
-
|
|
24
|
-
version: str
|
|
25
|
-
__version__: str
|
|
26
|
-
__version_tuple__: VERSION_TUPLE
|
|
27
|
-
version_tuple: VERSION_TUPLE
|
|
28
|
-
commit_id: COMMIT_ID
|
|
29
|
-
__commit_id__: COMMIT_ID
|
|
30
|
-
|
|
31
|
-
__version__ = version = '0.3.0'
|
|
32
|
-
__version_tuple__ = version_tuple = (0, 3, 0)
|
|
33
|
-
|
|
34
|
-
__commit_id__ = commit_id = None
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|