pypomes-iam 0.3.4__tar.gz → 0.8.6__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.

Potentially problematic release.


This version of pypomes-iam might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pypomes_iam
3
- Version: 0.3.4
3
+ Version: 0.8.6
4
4
  Summary: A collection of Python pomes, penyeach (IAM modules)
5
5
  Project-URL: Homepage, https://github.com/TheWiseCoder/PyPomes-IAM
6
6
  Project-URL: Bug Tracker, https://github.com/TheWiseCoder/PyPomes-IAM/issues
@@ -10,9 +10,8 @@ Classifier: License :: OSI Approved :: MIT License
10
10
  Classifier: Operating System :: OS Independent
11
11
  Classifier: Programming Language :: Python :: 3
12
12
  Requires-Python: >=3.12
13
- Requires-Dist: cachetools>=6.2.1
14
13
  Requires-Dist: flask>=3.1.2
15
14
  Requires-Dist: pyjwt>=2.10.1
16
- Requires-Dist: pypomes-core>=2.8.1
15
+ Requires-Dist: pypomes-core>=2.8.6
17
16
  Requires-Dist: pypomes-crypto>=0.4.8
18
17
  Requires-Dist: requests>=2.32.5
@@ -6,7 +6,7 @@ build-backend = "hatchling.build"
6
6
 
7
7
  [project]
8
8
  name = "pypomes_iam"
9
- version = "0.3.4"
9
+ version = "0.8.6"
10
10
  authors = [
11
11
  { name="GT Nunes", email="wisecoder01@gmail.com" }
12
12
  ]
@@ -19,10 +19,9 @@ classifiers = [
19
19
  "Operating System :: OS Independent"
20
20
  ]
21
21
  dependencies = [
22
- "cachetools>=6.2.1",
23
22
  "Flask>=3.1.2",
24
23
  "PyJWT>=2.10.1",
25
- "pypomes-core>=2.8.1",
24
+ "pypomes-core>=2.8.6",
26
25
  "pypomes-crypto>=0.4.8",
27
26
  "requests>=2.32.5"
28
27
  ]
File without changes
@@ -0,0 +1,49 @@
1
+ from .iam_actions import (
2
+ iam_callback, iam_exchange,
3
+ iam_login, iam_logout, iam_get_token, iam_userinfo
4
+ )
5
+ from .iam_common import (
6
+ IamServer, ServerParam
7
+ )
8
+ from .iam_pomes import (
9
+ iam_setup_server, iam_setup_endpoints
10
+ )
11
+ from .iam_services import (
12
+ jwt_required, iam_setup_logger,
13
+ service_setup_server, service_login, service_logout,
14
+ service_get_token, service_userinfo, service_callback,
15
+ service_exchange, service_callback_exchange
16
+ )
17
+ from .provider_pomes import (
18
+ IamProvider, ProviderParam,
19
+ service_get_token, provider_get_token,
20
+ iam_setup_provider, provider_setup_endpoint, provider_setup_logger
21
+ )
22
+ from .token_pomes import (
23
+ token_get_claims, token_get_values, token_validate
24
+ )
25
+
26
+ __all__ = [
27
+ # iam_actions
28
+ "iam_callback", "iam_exchange",
29
+ "iam_login", "iam_logout", "iam_get_token", "iam_userinfo",
30
+ # iam_commons
31
+ "IamServer", "ServerParam",
32
+ # iam_pomes
33
+ "iam_setup_server", "iam_setup_endpoints",
34
+ # iam_services
35
+ "jwt_required", "iam_setup_logger",
36
+ "service_setup_server", "service_login", "service_logout",
37
+ "service_get_token", "service_userinfo", "service_callback",
38
+ "service_exchange", "service_callback_exchange",
39
+ # provider_pomes
40
+ "IamProvider", "ProviderParam",
41
+ "service_get_token", "provider_get_token",
42
+ "iam_setup_provider", "provider_setup_endpoint", "provider_setup_logger",
43
+ # token_pomes
44
+ "token_get_claims", "token_get_values", "token_validate"
45
+ ]
46
+
47
+ from importlib.metadata import version
48
+ __version__ = version("pypomes_iam")
49
+ __version_info__ = tuple(int(i) for i in __version__.split(".") if i.isdigit())