pypomes-iam 0.2.6__tar.gz → 0.6.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.

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.2.6
3
+ Version: 0.6.1
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
@@ -6,7 +6,7 @@ build-backend = "hatchling.build"
6
6
 
7
7
  [project]
8
8
  name = "pypomes_iam"
9
- version = "0.2.6"
9
+ version = "0.6.1"
10
10
  authors = [
11
11
  { name="GT Nunes", email="wisecoder01@gmail.com" }
12
12
  ]
File without changes
@@ -0,0 +1,39 @@
1
+ from .iam_actions import (
2
+ action_callback, action_exchange,
3
+ action_login, action_logout, action_token
4
+ )
5
+ from .iam_common import (
6
+ IamServer, IamParam
7
+ )
8
+ from .iam_pomes import (
9
+ iam_setup, iam_get_env_parameters, iam_get_token
10
+ )
11
+ from .iam_services import (
12
+ jwt_required, logger_register
13
+ )
14
+ from .provider_pomes import (
15
+ provider_register, provider_get_token
16
+ )
17
+ from .token_pomes import (
18
+ token_validate
19
+ )
20
+
21
+ __all__ = [
22
+ # iam_actions
23
+ "action_callback", "action_exchange",
24
+ "action_login", "action_logout", "action_token",
25
+ # iam_commons
26
+ "IamServer", "IamParam",
27
+ # iam_pomes
28
+ "iam_setup", "iam_get_env_parameters", "iam_get_token",
29
+ # iam_services
30
+ "jwt_required", "logger_register",
31
+ # provider_pomes
32
+ "provider_register", "provider_get_token",
33
+ # token_pomes
34
+ "token_validate"
35
+ ]
36
+
37
+ from importlib.metadata import version
38
+ __version__ = version("pypomes_iam")
39
+ __version_info__ = tuple(int(i) for i in __version__.split(".") if i.isdigit())