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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyauthenticator
3
- Version: 0.3.0
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>=11.3.0
29
- Requires-Dist: pyotp>=2.9.0
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
  [![Pipeline](https://github.com/jan-janssen/pyauthenticator/actions/workflows/pipeline.yml/badge.svg)](https://github.com/jan-janssen/pyauthenticator/actions/workflows/pipeline.yml)
36
- [![Coverage Status](https://coveralls.io/repos/github/jan-janssen/pyauthenticator/badge.svg?branch=main)](https://coveralls.io/github/jan-janssen/pyauthenticator?branch=main)
36
+ [![codecov](https://codecov.io/github/jan-janssen/pyauthenticator/graph/badge.svg?token=K0VG71K9YI)](https://codecov.io/github/jan-janssen/pyauthenticator)
37
37
  [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](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
  [![Pipeline](https://github.com/jan-janssen/pyauthenticator/actions/workflows/pipeline.yml/badge.svg)](https://github.com/jan-janssen/pyauthenticator/actions/workflows/pipeline.yml)
3
- [![Coverage Status](https://coveralls.io/repos/github/jan-janssen/pyauthenticator/badge.svg?branch=main)](https://coveralls.io/github/jan-janssen/pyauthenticator?branch=main)
3
+ [![codecov](https://codecov.io/github/jan-janssen/pyauthenticator/graph/badge.svg?token=K0VG71K9YI)](https://codecov.io/github/jan-janssen/pyauthenticator)
4
4
  [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](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.27.0",
3
+ "hatchling>=1.28.0",
4
4
  "hatch-vcs>=0.5.0",
5
- "pyotp>=2.9.0",
5
+ "pyotp>=2.10.0",
6
6
  "qrcode>=8.2",
7
7
  "pyzbar>=0.1.9",
8
- "pillow>=11.3.0",
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.9.0",
40
+ "pyotp>=2.10.0",
41
41
  "qrcode>=8.2",
42
42
  "pyzbar>=0.1.9",
43
- "pillow>=11.3.0",
43
+ "pillow>=12.1.0",
44
44
  ]
45
45
 
46
46
  [project.urls]
@@ -4,6 +4,5 @@ Generate two factor authentication codes on the command line
4
4
 
5
5
  from pyauthenticator._cmd import command_line_parser
6
6
 
7
-
8
7
  if __name__ == "__main__":
9
8
  command_line_parser()
@@ -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