usso 0.18.0__tar.gz → 0.19.0__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: usso
3
- Version: 0.18.0
3
+ Version: 0.19.0
4
4
  Summary: A plug-and-play client for integrating universal single sign-on (SSO) with Python frameworks, enabling secure and seamless authentication across microservices.
5
5
  Author-email: Mahdi Kiani <mahdikiany@gmail.com>
6
6
  Maintainer-email: Mahdi Kiani <mahdikiany@gmail.com>
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "usso"
7
- version = "0.18.0"
7
+ version = "0.19.0"
8
8
  description = "A plug-and-play client for integrating universal single sign-on (SSO) with Python frameworks, enabling secure and seamless authentication across microservices."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
@@ -0,0 +1,3 @@
1
+ from .core import UserData, Usso
2
+
3
+ __all__ = ["UserData", "Usso"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: usso
3
- Version: 0.18.0
3
+ Version: 0.19.0
4
4
  Summary: A plug-and-play client for integrating universal single sign-on (SSO) with Python frameworks, enabling secure and seamless authentication across microservices.
5
5
  Author-email: Mahdi Kiani <mahdikiany@gmail.com>
6
6
  Maintainer-email: Mahdi Kiani <mahdikiany@gmail.com>
@@ -6,8 +6,12 @@ import unittest
6
6
 
7
7
 
8
8
  class TestSimple(unittest.TestCase):
9
- def test_add_one(self):
10
- self.assertEqual(5 + 1, 6)
9
+ def test_import(self):
10
+ import usso
11
+
12
+ usso.Usso()
13
+ usso.UserData()
14
+
11
15
 
12
16
 
13
17
  if __name__ == "__main__":
@@ -1,3 +0,0 @@
1
- from .core import UserData, user_data_from_token
2
-
3
- __all__ = ["UserData", "user_data_from_token"]
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes