graphplug 0.2.3__tar.gz → 0.2.4__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 (34) hide show
  1. {graphplug-0.2.3 → graphplug-0.2.4}/PKG-INFO +7 -2
  2. {graphplug-0.2.3 → graphplug-0.2.4}/graphplug/__init__.py +1 -1
  3. {graphplug-0.2.3 → graphplug-0.2.4}/graphplug.egg-info/PKG-INFO +7 -2
  4. {graphplug-0.2.3 → graphplug-0.2.4}/graphplug.egg-info/requires.txt +1 -0
  5. {graphplug-0.2.3 → graphplug-0.2.4}/pyproject.toml +10 -1
  6. {graphplug-0.2.3 → graphplug-0.2.4}/LICENSE +0 -0
  7. {graphplug-0.2.3 → graphplug-0.2.4}/README.md +0 -0
  8. {graphplug-0.2.3 → graphplug-0.2.4}/graphplug/_auth.py +0 -0
  9. {graphplug-0.2.3 → graphplug-0.2.4}/graphplug/_errors.py +0 -0
  10. {graphplug-0.2.3 → graphplug-0.2.4}/graphplug/_http.py +0 -0
  11. {graphplug-0.2.3 → graphplug-0.2.4}/graphplug/_log.py +0 -0
  12. {graphplug-0.2.3 → graphplug-0.2.4}/graphplug/_operations.py +0 -0
  13. {graphplug-0.2.3 → graphplug-0.2.4}/graphplug/_request.py +0 -0
  14. {graphplug-0.2.3 → graphplug-0.2.4}/graphplug/_resources/__init__.py +0 -0
  15. {graphplug-0.2.3 → graphplug-0.2.4}/graphplug/_resources/base.py +0 -0
  16. {graphplug-0.2.3 → graphplug-0.2.4}/graphplug/_resources/calendar.py +0 -0
  17. {graphplug-0.2.3 → graphplug-0.2.4}/graphplug/_resources/files.py +0 -0
  18. {graphplug-0.2.3 → graphplug-0.2.4}/graphplug/_resources/mail.py +0 -0
  19. {graphplug-0.2.3 → graphplug-0.2.4}/graphplug/_resources/teams.py +0 -0
  20. {graphplug-0.2.3 → graphplug-0.2.4}/graphplug/_resources/users.py +0 -0
  21. {graphplug-0.2.3 → graphplug-0.2.4}/graphplug/_scopes.py +0 -0
  22. {graphplug-0.2.3 → graphplug-0.2.4}/graphplug/py.typed +0 -0
  23. {graphplug-0.2.3 → graphplug-0.2.4}/graphplug.egg-info/SOURCES.txt +0 -0
  24. {graphplug-0.2.3 → graphplug-0.2.4}/graphplug.egg-info/dependency_links.txt +0 -0
  25. {graphplug-0.2.3 → graphplug-0.2.4}/graphplug.egg-info/top_level.txt +0 -0
  26. {graphplug-0.2.3 → graphplug-0.2.4}/setup.cfg +0 -0
  27. {graphplug-0.2.3 → graphplug-0.2.4}/tests/test_errors_and_logging.py +0 -0
  28. {graphplug-0.2.3 → graphplug-0.2.4}/tests/test_files_teams_users.py +0 -0
  29. {graphplug-0.2.3 → graphplug-0.2.4}/tests/test_operations.py +0 -0
  30. {graphplug-0.2.3 → graphplug-0.2.4}/tests/test_redirect_and_construction.py +0 -0
  31. {graphplug-0.2.3 → graphplug-0.2.4}/tests/test_requests.py +0 -0
  32. {graphplug-0.2.3 → graphplug-0.2.4}/tests/test_resources.py +0 -0
  33. {graphplug-0.2.3 → graphplug-0.2.4}/tests/test_signin.py +0 -0
  34. {graphplug-0.2.3 → graphplug-0.2.4}/tests/test_transport.py +0 -0
@@ -1,9 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: graphplug
3
- Version: 0.2.3
3
+ Version: 0.2.4
4
4
  Summary: Plug-and-play Graph API for Python: mail, calendar, files, teams, users and generic requests.
5
- Author-email: Vikram Balaji <vikram.x.balaji@gmail.com>
5
+ Author: Vikram Balaji
6
6
  License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/VikramBalaji1/graphPlug
8
+ Project-URL: Documentation, https://github.com/VikramBalaji1/graphPlug#readme
9
+ Project-URL: Issues, https://github.com/VikramBalaji1/graphPlug/issues
10
+ Project-URL: Changelog, https://github.com/VikramBalaji1/graphPlug/releases
7
11
  Keywords: microsoft-graph,entra-id,azure-ad,outlook,onedrive,teams,asyncio
8
12
  Classifier: Development Status :: 4 - Beta
9
13
  Classifier: Framework :: AsyncIO
@@ -25,6 +29,7 @@ License-File: LICENSE
25
29
  Requires-Dist: azure-identity>=1.19
26
30
  Requires-Dist: msgraph-core>=1.3
27
31
  Requires-Dist: msal>=1.31
32
+ Requires-Dist: httpx>=0.28
28
33
  Dynamic: license-file
29
34
 
30
35
  # graphplug
@@ -35,7 +35,7 @@ from ._scopes import Scopes
35
35
 
36
36
  __all__ = ["GraphClient", "GraphError", "PendingSignIn", "Scopes"]
37
37
 
38
- __version__ = "0.2.3"
38
+ __version__ = "0.2.4"
39
39
 
40
40
 
41
41
  class PendingSignIn:
@@ -1,9 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: graphplug
3
- Version: 0.2.3
3
+ Version: 0.2.4
4
4
  Summary: Plug-and-play Graph API for Python: mail, calendar, files, teams, users and generic requests.
5
- Author-email: Vikram Balaji <vikram.x.balaji@gmail.com>
5
+ Author: Vikram Balaji
6
6
  License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/VikramBalaji1/graphPlug
8
+ Project-URL: Documentation, https://github.com/VikramBalaji1/graphPlug#readme
9
+ Project-URL: Issues, https://github.com/VikramBalaji1/graphPlug/issues
10
+ Project-URL: Changelog, https://github.com/VikramBalaji1/graphPlug/releases
7
11
  Keywords: microsoft-graph,entra-id,azure-ad,outlook,onedrive,teams,asyncio
8
12
  Classifier: Development Status :: 4 - Beta
9
13
  Classifier: Framework :: AsyncIO
@@ -25,6 +29,7 @@ License-File: LICENSE
25
29
  Requires-Dist: azure-identity>=1.19
26
30
  Requires-Dist: msgraph-core>=1.3
27
31
  Requires-Dist: msal>=1.31
32
+ Requires-Dist: httpx>=0.28
28
33
  Dynamic: license-file
29
34
 
30
35
  # graphplug
@@ -1,3 +1,4 @@
1
1
  azure-identity>=1.19
2
2
  msgraph-core>=1.3
3
3
  msal>=1.31
4
+ httpx>=0.28
@@ -12,7 +12,7 @@ readme = "README.md"
12
12
  requires-python = ">=3.10"
13
13
  license = "MIT"
14
14
  license-files = ["LICENSE"]
15
- authors = [{ name = "Vikram Balaji", email = "vikram.x.balaji@gmail.com" }]
15
+ authors = [{ name = "Vikram Balaji"}]
16
16
  keywords = ["microsoft-graph", "entra-id", "azure-ad", "outlook", "onedrive", "teams", "asyncio"]
17
17
  classifiers = [
18
18
  "Development Status :: 4 - Beta",
@@ -36,13 +36,22 @@ classifiers = [
36
36
  # msgraph-core the supported middleware pipeline (retry, Retry-After, redirect, telemetry)
37
37
  # msal the PKCE code exchange; already required by azure-identity, named because
38
38
  # _auth.py imports it directly
39
+ # httpx the HTTP client under msgraph-core; named because _http.py and _errors.py
40
+ # import it directly
39
41
  # msgraph-sdk is deliberately NOT used: its dependency tree does not resolve in practice.
40
42
  dependencies = [
41
43
  "azure-identity>=1.19",
42
44
  "msgraph-core>=1.3",
43
45
  "msal>=1.31",
46
+ "httpx>=0.28",
44
47
  ]
45
48
 
49
+ [project.urls]
50
+ Homepage = "https://github.com/VikramBalaji1/graphPlug"
51
+ Documentation = "https://github.com/VikramBalaji1/graphPlug#readme"
52
+ Issues = "https://github.com/VikramBalaji1/graphPlug/issues"
53
+ Changelog = "https://github.com/VikramBalaji1/graphPlug/releases"
54
+
46
55
  [tool.setuptools.dynamic]
47
56
  version = { attr = "graphplug.__version__" }
48
57
 
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes