microsoft-agents-a365-notifications 0.1.0.dev30__tar.gz → 0.2.1.dev0__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 (20) hide show
  1. {microsoft_agents_a365_notifications-0.1.0.dev30 → microsoft_agents_a365_notifications-0.2.1.dev0}/PKG-INFO +5 -3
  2. {microsoft_agents_a365_notifications-0.1.0.dev30 → microsoft_agents_a365_notifications-0.2.1.dev0}/README.md +2 -2
  3. {microsoft_agents_a365_notifications-0.1.0.dev30 → microsoft_agents_a365_notifications-0.2.1.dev0}/microsoft_agents_a365/notifications/__init__.py +2 -1
  4. {microsoft_agents_a365_notifications-0.1.0.dev30 → microsoft_agents_a365_notifications-0.2.1.dev0}/microsoft_agents_a365/notifications/agent_notification.py +3 -0
  5. {microsoft_agents_a365_notifications-0.1.0.dev30 → microsoft_agents_a365_notifications-0.2.1.dev0}/microsoft_agents_a365/notifications/models/__init__.py +3 -0
  6. {microsoft_agents_a365_notifications-0.1.0.dev30 → microsoft_agents_a365_notifications-0.2.1.dev0}/microsoft_agents_a365/notifications/models/agent_lifecycle_event.py +3 -0
  7. {microsoft_agents_a365_notifications-0.1.0.dev30 → microsoft_agents_a365_notifications-0.2.1.dev0}/microsoft_agents_a365/notifications/models/agent_notification_activity.py +3 -0
  8. {microsoft_agents_a365_notifications-0.1.0.dev30 → microsoft_agents_a365_notifications-0.2.1.dev0}/microsoft_agents_a365/notifications/models/agent_subchannel.py +3 -0
  9. {microsoft_agents_a365_notifications-0.1.0.dev30 → microsoft_agents_a365_notifications-0.2.1.dev0}/microsoft_agents_a365/notifications/models/email_reference.py +3 -0
  10. {microsoft_agents_a365_notifications-0.1.0.dev30 → microsoft_agents_a365_notifications-0.2.1.dev0}/microsoft_agents_a365/notifications/models/email_response.py +3 -0
  11. {microsoft_agents_a365_notifications-0.1.0.dev30 → microsoft_agents_a365_notifications-0.2.1.dev0}/microsoft_agents_a365/notifications/models/notification_types.py +3 -0
  12. {microsoft_agents_a365_notifications-0.1.0.dev30 → microsoft_agents_a365_notifications-0.2.1.dev0}/microsoft_agents_a365/notifications/models/wpx_comment.py +3 -0
  13. {microsoft_agents_a365_notifications-0.1.0.dev30 → microsoft_agents_a365_notifications-0.2.1.dev0}/microsoft_agents_a365_notifications.egg-info/PKG-INFO +5 -3
  14. {microsoft_agents_a365_notifications-0.1.0.dev30 → microsoft_agents_a365_notifications-0.2.1.dev0}/microsoft_agents_a365_notifications.egg-info/SOURCES.txt +1 -0
  15. {microsoft_agents_a365_notifications-0.1.0.dev30 → microsoft_agents_a365_notifications-0.2.1.dev0}/microsoft_agents_a365_notifications.egg-info/top_level.txt +1 -0
  16. {microsoft_agents_a365_notifications-0.1.0.dev30 → microsoft_agents_a365_notifications-0.2.1.dev0}/pyproject.toml +4 -0
  17. {microsoft_agents_a365_notifications-0.1.0.dev30 → microsoft_agents_a365_notifications-0.2.1.dev0}/setup.py +1 -1
  18. {microsoft_agents_a365_notifications-0.1.0.dev30 → microsoft_agents_a365_notifications-0.2.1.dev0}/microsoft_agents_a365_notifications.egg-info/dependency_links.txt +0 -0
  19. {microsoft_agents_a365_notifications-0.1.0.dev30 → microsoft_agents_a365_notifications-0.2.1.dev0}/microsoft_agents_a365_notifications.egg-info/requires.txt +0 -0
  20. {microsoft_agents_a365_notifications-0.1.0.dev30 → microsoft_agents_a365_notifications-0.2.1.dev0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: microsoft-agents-a365-notifications
3
- Version: 0.1.0.dev30
3
+ Version: 0.2.1.dev0
4
4
  Summary: Notification and messaging extensions for AI agent applications
5
5
  Author-email: Microsoft <support@microsoft.com>
6
6
  License: MIT
@@ -21,6 +21,7 @@ Classifier: Topic :: Communications
21
21
  Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
22
22
  Requires-Python: >=3.11
23
23
  Description-Content-Type: text/markdown
24
+ License-File: LICENSE
24
25
  Requires-Dist: typing-extensions>=4.0.0
25
26
  Requires-Dist: microsoft-agents-activity>=0.4.0
26
27
  Requires-Dist: microsoft-agents-hosting-core>=0.4.0
@@ -34,6 +35,7 @@ Requires-Dist: mypy>=1.0.0; extra == "dev"
34
35
  Provides-Extra: test
35
36
  Requires-Dist: pytest>=7.0.0; extra == "test"
36
37
  Requires-Dist: pytest-asyncio>=0.21.0; extra == "test"
38
+ Dynamic: license-file
37
39
 
38
40
  # microsoft-agents-a365-notifications
39
41
 
@@ -57,7 +59,7 @@ For usage examples and detailed documentation, see the [Notification documentati
57
59
  For issues, questions, or feedback:
58
60
 
59
61
  - File issues in the [GitHub Issues](https://github.com/microsoft/Agent365-python/issues) section
60
- - See the [main documentation](../../../README.md) for more information
62
+ - See the [main documentation](../../README.md) for more information
61
63
 
62
64
  ## Trademarks
63
65
 
@@ -67,4 +69,4 @@ For issues, questions, or feedback:
67
69
 
68
70
  Copyright (c) Microsoft Corporation. All rights reserved.
69
71
 
70
- Licensed under the MIT License - see the [LICENSE](../../../LICENSE.md) file for details.
72
+ Licensed under the MIT License - see the [LICENSE](../../LICENSE.md) file for details.
@@ -20,7 +20,7 @@ For usage examples and detailed documentation, see the [Notification documentati
20
20
  For issues, questions, or feedback:
21
21
 
22
22
  - File issues in the [GitHub Issues](https://github.com/microsoft/Agent365-python/issues) section
23
- - See the [main documentation](../../../README.md) for more information
23
+ - See the [main documentation](../../README.md) for more information
24
24
 
25
25
  ## Trademarks
26
26
 
@@ -30,4 +30,4 @@ For issues, questions, or feedback:
30
30
 
31
31
  Copyright (c) Microsoft Corporation. All rights reserved.
32
32
 
33
- Licensed under the MIT License - see the [LICENSE](../../../LICENSE.md) file for details.
33
+ Licensed under the MIT License - see the [LICENSE](../../LICENSE.md) file for details.
@@ -1,4 +1,5 @@
1
- # Copyright (c) Microsoft. All rights reserved.
1
+ # Copyright (c) Microsoft Corporation.
2
+ # Licensed under the MIT License.
2
3
 
3
4
  """
4
5
  Microsoft Agent 365 Notifications
@@ -1,3 +1,6 @@
1
+ # Copyright (c) Microsoft Corporation.
2
+ # Licensed under the MIT License.
3
+
1
4
  from __future__ import annotations
2
5
 
3
6
  from collections.abc import Awaitable, Callable, Iterable
@@ -1,3 +1,6 @@
1
+ # Copyright (c) Microsoft Corporation.
2
+ # Licensed under the MIT License.
3
+
1
4
  from .agent_notification_activity import AgentNotificationActivity
2
5
  from .email_reference import EmailReference
3
6
  from .wpx_comment import WpxComment
@@ -1,3 +1,6 @@
1
+ # Copyright (c) Microsoft Corporation.
2
+ # Licensed under the MIT License.
3
+
1
4
  from enum import Enum
2
5
 
3
6
 
@@ -1,3 +1,6 @@
1
+ # Copyright (c) Microsoft Corporation.
2
+ # Licensed under the MIT License.
3
+
1
4
  from typing import Any, Optional, Type, TypeVar
2
5
  from microsoft_agents.activity import Activity
3
6
  from .notification_types import NotificationTypes
@@ -1,3 +1,6 @@
1
+ # Copyright (c) Microsoft Corporation.
2
+ # Licensed under the MIT License.
3
+
1
4
  from enum import Enum
2
5
 
3
6
 
@@ -1,3 +1,6 @@
1
+ # Copyright (c) Microsoft Corporation.
2
+ # Licensed under the MIT License.
3
+
1
4
  from typing import Optional, Literal
2
5
  from microsoft_agents.activity.entity import Entity
3
6
  from .notification_types import NotificationTypes
@@ -1,3 +1,6 @@
1
+ # Copyright (c) Microsoft Corporation.
2
+ # Licensed under the MIT License.
3
+
1
4
  from typing import Literal
2
5
  from microsoft_agents.activity.activity import Activity
3
6
  from microsoft_agents.activity.entity import Entity
@@ -1,3 +1,6 @@
1
+ # Copyright (c) Microsoft Corporation.
2
+ # Licensed under the MIT License.
3
+
1
4
  from enum import Enum
2
5
 
3
6
 
@@ -1,3 +1,6 @@
1
+ # Copyright (c) Microsoft Corporation.
2
+ # Licensed under the MIT License.
3
+
1
4
  from typing import Optional, Literal
2
5
  from microsoft_agents.activity.entity import Entity
3
6
  from .notification_types import NotificationTypes
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: microsoft-agents-a365-notifications
3
- Version: 0.1.0.dev30
3
+ Version: 0.2.1.dev0
4
4
  Summary: Notification and messaging extensions for AI agent applications
5
5
  Author-email: Microsoft <support@microsoft.com>
6
6
  License: MIT
@@ -21,6 +21,7 @@ Classifier: Topic :: Communications
21
21
  Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
22
22
  Requires-Python: >=3.11
23
23
  Description-Content-Type: text/markdown
24
+ License-File: LICENSE
24
25
  Requires-Dist: typing-extensions>=4.0.0
25
26
  Requires-Dist: microsoft-agents-activity>=0.4.0
26
27
  Requires-Dist: microsoft-agents-hosting-core>=0.4.0
@@ -34,6 +35,7 @@ Requires-Dist: mypy>=1.0.0; extra == "dev"
34
35
  Provides-Extra: test
35
36
  Requires-Dist: pytest>=7.0.0; extra == "test"
36
37
  Requires-Dist: pytest-asyncio>=0.21.0; extra == "test"
38
+ Dynamic: license-file
37
39
 
38
40
  # microsoft-agents-a365-notifications
39
41
 
@@ -57,7 +59,7 @@ For usage examples and detailed documentation, see the [Notification documentati
57
59
  For issues, questions, or feedback:
58
60
 
59
61
  - File issues in the [GitHub Issues](https://github.com/microsoft/Agent365-python/issues) section
60
- - See the [main documentation](../../../README.md) for more information
62
+ - See the [main documentation](../../README.md) for more information
61
63
 
62
64
  ## Trademarks
63
65
 
@@ -67,4 +69,4 @@ For issues, questions, or feedback:
67
69
 
68
70
  Copyright (c) Microsoft Corporation. All rights reserved.
69
71
 
70
- Licensed under the MIT License - see the [LICENSE](../../../LICENSE.md) file for details.
72
+ Licensed under the MIT License - see the [LICENSE](../../LICENSE.md) file for details.
@@ -1,6 +1,7 @@
1
1
  README.md
2
2
  pyproject.toml
3
3
  setup.py
4
+ ../../LICENSE
4
5
  microsoft_agents_a365/notifications/__init__.py
5
6
  microsoft_agents_a365/notifications/agent_notification.py
6
7
  microsoft_agents_a365/notifications/models/__init__.py
@@ -69,6 +69,10 @@ target-version = ['py311']
69
69
  line-length = 100
70
70
  target-version = "py311"
71
71
 
72
+ [tool.ruff.lint.flake8-copyright]
73
+ notice-rgx = "# Copyright \\(c\\) Microsoft Corporation\\.\\r?\\n# Licensed under the MIT License\\."
74
+ min-file-size = 1
75
+
72
76
  [tool.mypy]
73
77
  python_version = "3.11"
74
78
  strict = true
@@ -13,7 +13,7 @@ package_version = environ.get("AGENT365_PYTHON_SDK_PACKAGE_VERSION", "0.0.0")
13
13
  helper_path = Path(__file__).parent.parent.parent / "versioning" / "helper"
14
14
  sys.path.insert(0, str(helper_path))
15
15
 
16
- from setup_utils import get_dynamic_dependencies
16
+ from setup_utils import get_dynamic_dependencies # noqa: E402
17
17
 
18
18
  # Use minimum version strategy:
19
19
  # - Internal packages get: >= current_base_version (e.g., >= 0.1.0)