aiohttp-msal 1.0.10__tar.gz → 1.0.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.
- {aiohttp_msal-1.0.10 → aiohttp_msal-1.0.11}/PKG-INFO +5 -5
- {aiohttp_msal-1.0.10 → aiohttp_msal-1.0.11}/pyproject.toml +5 -5
- {aiohttp_msal-1.0.10 → aiohttp_msal-1.0.11}/LICENSE +0 -0
- {aiohttp_msal-1.0.10 → aiohttp_msal-1.0.11}/README.md +0 -0
- {aiohttp_msal-1.0.10 → aiohttp_msal-1.0.11}/src/aiohttp_msal/__init__.py +0 -0
- {aiohttp_msal-1.0.10 → aiohttp_msal-1.0.11}/src/aiohttp_msal/helpers.py +0 -0
- {aiohttp_msal-1.0.10 → aiohttp_msal-1.0.11}/src/aiohttp_msal/msal_async.py +0 -0
- {aiohttp_msal-1.0.10 → aiohttp_msal-1.0.11}/src/aiohttp_msal/py.typed +0 -0
- {aiohttp_msal-1.0.10 → aiohttp_msal-1.0.11}/src/aiohttp_msal/redis_tools.py +0 -0
- {aiohttp_msal-1.0.10 → aiohttp_msal-1.0.11}/src/aiohttp_msal/routes.py +0 -0
- {aiohttp_msal-1.0.10 → aiohttp_msal-1.0.11}/src/aiohttp_msal/settings.py +0 -0
- {aiohttp_msal-1.0.10 → aiohttp_msal-1.0.11}/src/aiohttp_msal/settings_base.py +0 -0
- {aiohttp_msal-1.0.10 → aiohttp_msal-1.0.11}/src/aiohttp_msal/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: aiohttp-msal
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.11
|
|
4
4
|
Summary: Helper Library to use the Microsoft Authentication Library (MSAL) with aiohttp
|
|
5
5
|
Keywords: aiohttp,asyncio,msal,oauth
|
|
6
6
|
Author: Johann Kellerman
|
|
@@ -33,10 +33,10 @@ Classifier: Programming Language :: Python :: 3 :: Only
|
|
|
33
33
|
Classifier: Programming Language :: Python :: 3.12
|
|
34
34
|
Classifier: Programming Language :: Python :: 3.13
|
|
35
35
|
Classifier: Programming Language :: Python :: 3.14
|
|
36
|
-
Requires-Dist: aiohttp>=3.11.18
|
|
37
|
-
Requires-Dist: aiohttp-session[aioredis]>=2.12.1
|
|
38
|
-
Requires-Dist: attrs>=25.3
|
|
39
|
-
Requires-Dist: msal>=1.32.3
|
|
36
|
+
Requires-Dist: aiohttp>=3.11.18
|
|
37
|
+
Requires-Dist: aiohttp-session[aioredis]>=2.12.1
|
|
38
|
+
Requires-Dist: attrs>=25.3
|
|
39
|
+
Requires-Dist: msal>=1.32.3
|
|
40
40
|
Requires-Dist: aiohttp-session[aioredis]>=2.12.1,<3 ; extra == 'aioredis'
|
|
41
41
|
Requires-Python: >=3.12
|
|
42
42
|
Project-URL: Homepage, https://github.com/kellerza/aiohttp_msal
|
|
@@ -4,7 +4,7 @@ requires = [ "uv-build>=0.9.12,<0.10" ]
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "aiohttp-msal"
|
|
7
|
-
version = "1.0.
|
|
7
|
+
version = "1.0.11"
|
|
8
8
|
description = "Helper Library to use the Microsoft Authentication Library (MSAL) with aiohttp"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
keywords = [ "aiohttp", "asyncio", "msal", "oauth" ]
|
|
@@ -21,10 +21,10 @@ classifiers = [
|
|
|
21
21
|
"Programming Language :: Python :: 3.14",
|
|
22
22
|
]
|
|
23
23
|
dependencies = [
|
|
24
|
-
"aiohttp>=3.11.18
|
|
25
|
-
"aiohttp-session[aioredis]>=2.12.1
|
|
26
|
-
"attrs>=25.3
|
|
27
|
-
"msal>=1.32.3
|
|
24
|
+
"aiohttp>=3.11.18",
|
|
25
|
+
"aiohttp-session[aioredis]>=2.12.1",
|
|
26
|
+
"attrs>=25.3",
|
|
27
|
+
"msal>=1.32.3",
|
|
28
28
|
]
|
|
29
29
|
optional-dependencies.aioredis = [ "aiohttp-session[aioredis]>=2.12.1,<3" ]
|
|
30
30
|
urls.Homepage = "https://github.com/kellerza/aiohttp_msal"
|
|
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
|