iaptoolkit 0.2.0__tar.gz → 0.2.2__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.1
2
2
  Name: iaptoolkit
3
- Version: 0.2.0
3
+ Version: 0.2.2
4
4
  Summary: Library of common utils for interacting with Identity-Aware Proxies
5
5
  Author: Rob Voigt
6
6
  Author-email: code@ravoigt.com
@@ -9,7 +9,7 @@ Classifier: Programming Language :: Python :: 3
9
9
  Classifier: Programming Language :: Python :: 3.11
10
10
  Classifier: Programming Language :: Python :: 3.12
11
11
  Requires-Dist: google-auth (>=2.29.0,<3.0.0)
12
- Requires-Dist: kvcommon (>=0.1.1,<0.2.0)
12
+ Requires-Dist: kvcommon (>=0.1.3,<0.2.0)
13
13
  Requires-Dist: pytest (>=7.4.4,<8.0.0)
14
14
  Requires-Dist: requests (>=2.31.0,<3.0.0)
15
15
  Requires-Dist: toml (>=0.10.2,<0.11.0)
@@ -19,6 +19,15 @@ Description-Content-Type: text/markdown
19
19
 
20
20
  A library of utils to ease programmatic authentication with Google IAP (and ideally other IAPs in future).
21
21
 
22
+ # PyPi
23
+ https://pypi.org/project/iaptoolkit/
24
+
25
+ # Installation
26
+ ### With Poetry:
27
+ `poetry add iaptoolkit`
28
+
29
+ ### With pip:
30
+ `pip install iaptoolkit`
22
31
 
23
32
  ## Quick Start / Example Usage
24
33
 
@@ -2,6 +2,15 @@
2
2
 
3
3
  A library of utils to ease programmatic authentication with Google IAP (and ideally other IAPs in future).
4
4
 
5
+ # PyPi
6
+ https://pypi.org/project/iaptoolkit/
7
+
8
+ # Installation
9
+ ### With Poetry:
10
+ `poetry add iaptoolkit`
11
+
12
+ ### With pip:
13
+ `pip install iaptoolkit`
5
14
 
6
15
  ## Quick Start / Example Usage
7
16
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "iaptoolkit"
3
- version = "0.2.0"
3
+ version = "0.2.2"
4
4
  description = "Library of common utils for interacting with Identity-Aware Proxies"
5
5
  authors = ["Rob Voigt <code@ravoigt.com>"]
6
6
  readme = "README.md"
@@ -28,7 +28,7 @@ google-auth = "^2.29.0"
28
28
  requests = "^2.31.0"
29
29
  pytest = "^7.4.4"
30
30
  toml = "^0.10.2"
31
- kvcommon = "^0.1.1"
31
+ kvcommon = "^0.1.3"
32
32
 
33
33
  [tool.poetry.dev-dependencies]
34
34
  black = "*"
@@ -42,7 +42,8 @@ class TokenStructOAuth2(TokenStruct):
42
42
  refresh_token: str
43
43
  new_refresh_token: bool = False
44
44
 
45
+
45
46
  @dataclass(kw_only=True)
46
- class ResultAddTokenHeader():
47
+ class ResultAddTokenHeader:
47
48
  token_added: bool
48
49
  token_is_fresh: bool
File without changes