usso 0.27.10__tar.gz → 0.27.11__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.
Files changed (30) hide show
  1. {usso-0.27.10/src/usso.egg-info → usso-0.27.11}/PKG-INFO +2 -2
  2. {usso-0.27.10 → usso-0.27.11}/pyproject.toml +2 -3
  3. {usso-0.27.10 → usso-0.27.11/src/usso.egg-info}/PKG-INFO +2 -2
  4. {usso-0.27.10 → usso-0.27.11}/src/usso.egg-info/requires.txt +1 -1
  5. {usso-0.27.10 → usso-0.27.11}/LICENSE.txt +0 -0
  6. {usso-0.27.10 → usso-0.27.11}/README.md +0 -0
  7. {usso-0.27.10 → usso-0.27.11}/setup.cfg +0 -0
  8. {usso-0.27.10 → usso-0.27.11}/src/usso/__init__.py +0 -0
  9. {usso-0.27.10 → usso-0.27.11}/src/usso/b64tools.py +0 -0
  10. {usso-0.27.10 → usso-0.27.11}/src/usso/client/__init__.py +0 -0
  11. {usso-0.27.10 → usso-0.27.11}/src/usso/client/api.py +0 -0
  12. {usso-0.27.10 → usso-0.27.11}/src/usso/client/async_api.py +0 -0
  13. {usso-0.27.10 → usso-0.27.11}/src/usso/core.py +0 -0
  14. {usso-0.27.10 → usso-0.27.11}/src/usso/django/__init__.py +0 -0
  15. {usso-0.27.10 → usso-0.27.11}/src/usso/django/middleware.py +0 -0
  16. {usso-0.27.10 → usso-0.27.11}/src/usso/exceptions.py +0 -0
  17. {usso-0.27.10 → usso-0.27.11}/src/usso/fastapi/__init__.py +0 -0
  18. {usso-0.27.10 → usso-0.27.11}/src/usso/fastapi/integration.py +0 -0
  19. {usso-0.27.10 → usso-0.27.11}/src/usso/schemas.py +0 -0
  20. {usso-0.27.10 → usso-0.27.11}/src/usso/session/__init__.py +0 -0
  21. {usso-0.27.10 → usso-0.27.11}/src/usso/session/async_session.py +0 -0
  22. {usso-0.27.10 → usso-0.27.11}/src/usso/session/base_session.py +0 -0
  23. {usso-0.27.10 → usso-0.27.11}/src/usso/session/session.py +0 -0
  24. {usso-0.27.10 → usso-0.27.11}/src/usso.egg-info/SOURCES.txt +0 -0
  25. {usso-0.27.10 → usso-0.27.11}/src/usso.egg-info/dependency_links.txt +0 -0
  26. {usso-0.27.10 → usso-0.27.11}/src/usso.egg-info/entry_points.txt +0 -0
  27. {usso-0.27.10 → usso-0.27.11}/src/usso.egg-info/top_level.txt +0 -0
  28. {usso-0.27.10 → usso-0.27.11}/tests/test_api.py +0 -0
  29. {usso-0.27.10 → usso-0.27.11}/tests/test_core.py +0 -0
  30. {usso-0.27.10 → usso-0.27.11}/tests/test_simple.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: usso
3
- Version: 0.27.10
3
+ Version: 0.27.11
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>
@@ -43,9 +43,9 @@ Requires-Python: >=3.9
43
43
  Description-Content-Type: text/markdown
44
44
  License-File: LICENSE.txt
45
45
  Requires-Dist: pydantic>=2
46
- Requires-Dist: requests>=2.26.0
47
46
  Requires-Dist: pyjwt[crypto]
48
47
  Requires-Dist: cachetools
48
+ Requires-Dist: httpx
49
49
  Provides-Extra: fastapi
50
50
  Requires-Dist: fastapi>=0.65.0; extra == "fastapi"
51
51
  Requires-Dist: uvicorn[standard]>=0.13.0; extra == "fastapi"
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "usso"
7
- version = "0.27.10"
7
+ version = "0.27.11"
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.9"
@@ -29,10 +29,9 @@ classifiers = [
29
29
  ]
30
30
  dependencies = [
31
31
  "pydantic>=2",
32
- "requests>=2.26.0",
33
32
  "pyjwt[crypto]",
34
- # "singleton_package",
35
33
  "cachetools",
34
+ "httpx",
36
35
  ]
37
36
  optional-dependencies = {"fastapi"=["fastapi>=0.65.0", "uvicorn[standard]>=0.13.0"], "django"=["Django>=3.2"], "httpx"=["httpx"], "dev"=["check-manifest"], "test" = ["coverage"], "all"=["fastapi", "uvicorn", "django", "httpx", "dev", "test"]}
38
37
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: usso
3
- Version: 0.27.10
3
+ Version: 0.27.11
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>
@@ -43,9 +43,9 @@ Requires-Python: >=3.9
43
43
  Description-Content-Type: text/markdown
44
44
  License-File: LICENSE.txt
45
45
  Requires-Dist: pydantic>=2
46
- Requires-Dist: requests>=2.26.0
47
46
  Requires-Dist: pyjwt[crypto]
48
47
  Requires-Dist: cachetools
48
+ Requires-Dist: httpx
49
49
  Provides-Extra: fastapi
50
50
  Requires-Dist: fastapi>=0.65.0; extra == "fastapi"
51
51
  Requires-Dist: uvicorn[standard]>=0.13.0; extra == "fastapi"
@@ -1,7 +1,7 @@
1
1
  pydantic>=2
2
- requests>=2.26.0
3
2
  pyjwt[crypto]
4
3
  cachetools
4
+ httpx
5
5
 
6
6
  [all]
7
7
  fastapi
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes