graphplug 0.2.0__tar.gz → 0.2.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.
Files changed (34) hide show
  1. {graphplug-0.2.0 → graphplug-0.2.1}/PKG-INFO +2 -2
  2. {graphplug-0.2.0 → graphplug-0.2.1}/graphplug/__init__.py +1 -1
  3. {graphplug-0.2.0 → graphplug-0.2.1}/graphplug.egg-info/PKG-INFO +2 -2
  4. {graphplug-0.2.0 → graphplug-0.2.1}/graphplug.egg-info/SOURCES.txt +0 -0
  5. {graphplug-0.2.0 → graphplug-0.2.1}/graphplug.egg-info/dependency_links.txt +0 -0
  6. {graphplug-0.2.0 → graphplug-0.2.1}/graphplug.egg-info/requires.txt +0 -0
  7. {graphplug-0.2.0 → graphplug-0.2.1}/graphplug.egg-info/top_level.txt +0 -0
  8. {graphplug-0.2.0 → graphplug-0.2.1}/pyproject.toml +1 -1
  9. {graphplug-0.2.0 → graphplug-0.2.1}/LICENSE +0 -0
  10. {graphplug-0.2.0 → graphplug-0.2.1}/README.md +0 -0
  11. {graphplug-0.2.0 → graphplug-0.2.1}/graphplug/_auth.py +0 -0
  12. {graphplug-0.2.0 → graphplug-0.2.1}/graphplug/_errors.py +0 -0
  13. {graphplug-0.2.0 → graphplug-0.2.1}/graphplug/_http.py +0 -0
  14. {graphplug-0.2.0 → graphplug-0.2.1}/graphplug/_log.py +0 -0
  15. {graphplug-0.2.0 → graphplug-0.2.1}/graphplug/_operations.py +0 -0
  16. {graphplug-0.2.0 → graphplug-0.2.1}/graphplug/_request.py +0 -0
  17. {graphplug-0.2.0 → graphplug-0.2.1}/graphplug/_resources/__init__.py +0 -0
  18. {graphplug-0.2.0 → graphplug-0.2.1}/graphplug/_resources/base.py +0 -0
  19. {graphplug-0.2.0 → graphplug-0.2.1}/graphplug/_resources/calendar.py +0 -0
  20. {graphplug-0.2.0 → graphplug-0.2.1}/graphplug/_resources/files.py +0 -0
  21. {graphplug-0.2.0 → graphplug-0.2.1}/graphplug/_resources/mail.py +0 -0
  22. {graphplug-0.2.0 → graphplug-0.2.1}/graphplug/_resources/teams.py +0 -0
  23. {graphplug-0.2.0 → graphplug-0.2.1}/graphplug/_resources/users.py +0 -0
  24. {graphplug-0.2.0 → graphplug-0.2.1}/graphplug/_scopes.py +0 -0
  25. {graphplug-0.2.0 → graphplug-0.2.1}/graphplug/py.typed +0 -0
  26. {graphplug-0.2.0 → graphplug-0.2.1}/setup.cfg +0 -0
  27. {graphplug-0.2.0 → graphplug-0.2.1}/tests/test_errors_and_logging.py +0 -0
  28. {graphplug-0.2.0 → graphplug-0.2.1}/tests/test_files_teams_users.py +0 -0
  29. {graphplug-0.2.0 → graphplug-0.2.1}/tests/test_operations.py +0 -0
  30. {graphplug-0.2.0 → graphplug-0.2.1}/tests/test_redirect_and_construction.py +0 -0
  31. {graphplug-0.2.0 → graphplug-0.2.1}/tests/test_requests.py +0 -0
  32. {graphplug-0.2.0 → graphplug-0.2.1}/tests/test_resources.py +0 -0
  33. {graphplug-0.2.0 → graphplug-0.2.1}/tests/test_signin.py +0 -0
  34. {graphplug-0.2.0 → graphplug-0.2.1}/tests/test_transport.py +0 -0
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: graphplug
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Plug-and-play Graph API for Python: mail, calendar, files, teams, users and generic requests.
5
- Author: Arvind Vikram
5
+ Author-email: Vikram Balaji <vikram.x.balaji@gmail.com>
6
6
  License-Expression: MIT
7
7
  Keywords: microsoft-graph,entra-id,azure-ad,outlook,onedrive,teams,asyncio
8
8
  Classifier: Development Status :: 4 - Beta
@@ -35,7 +35,7 @@ from ._scopes import Scopes
35
35
 
36
36
  __all__ = ["GraphClient", "GraphError", "PendingSignIn", "Scopes"]
37
37
 
38
- __version__ = "0.2.0"
38
+ __version__ = "0.2.1"
39
39
 
40
40
 
41
41
  class PendingSignIn:
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: graphplug
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Plug-and-play Graph API for Python: mail, calendar, files, teams, users and generic requests.
5
- Author: Arvind Vikram
5
+ Author-email: Vikram Balaji <vikram.x.balaji@gmail.com>
6
6
  License-Expression: MIT
7
7
  Keywords: microsoft-graph,entra-id,azure-ad,outlook,onedrive,teams,asyncio
8
8
  Classifier: Development Status :: 4 - Beta
@@ -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 = "Arvind Vikram" }]
15
+ authors = [{ name = "Vikram Balaji", email = "vikram.x.balaji@gmail.com" }]
16
16
  keywords = ["microsoft-graph", "entra-id", "azure-ad", "outlook", "onedrive", "teams", "asyncio"]
17
17
  classifiers = [
18
18
  "Development Status :: 4 - Beta",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes