From a42472e17840fd02fc5885b58e26ec08e7524554 Mon Sep 17 00:00:00 2001 From: Chris Mullins Date: Thu, 9 Oct 2025 14:43:30 -0700 Subject: [PATCH 1/9] Add license information to pyproject.toml files for multiple libraries --- libraries/microsoft-agents-activity/pyproject.toml | 2 +- libraries/microsoft-agents-authentication-msal/pyproject.toml | 2 +- libraries/microsoft-agents-copilotstudio-client/pyproject.toml | 2 +- libraries/microsoft-agents-hosting-aiohttp/pyproject.toml | 2 +- libraries/microsoft-agents-hosting-core/pyproject.toml | 2 +- libraries/microsoft-agents-hosting-teams/pyproject.toml | 2 +- libraries/microsoft-agents-storage-blob/pyproject.toml | 2 +- libraries/microsoft-agents-storage-cosmos/pyproject.toml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/libraries/microsoft-agents-activity/pyproject.toml b/libraries/microsoft-agents-activity/pyproject.toml index 2369332ef..3bf9394f3 100644 --- a/libraries/microsoft-agents-activity/pyproject.toml +++ b/libraries/microsoft-agents-activity/pyproject.toml @@ -7,10 +7,10 @@ name = "microsoft-agents-activity" dynamic = ["version"] description = "A protocol library for Microsoft Agents" authors = [{name = "Microsoft Corporation"}] +license = {text = "MIT"} requires-python = ">=3.9" classifiers = [ "Programming Language :: Python :: 3", - "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ] dependencies = [ diff --git a/libraries/microsoft-agents-authentication-msal/pyproject.toml b/libraries/microsoft-agents-authentication-msal/pyproject.toml index 40bf40545..bf1b3cb51 100644 --- a/libraries/microsoft-agents-authentication-msal/pyproject.toml +++ b/libraries/microsoft-agents-authentication-msal/pyproject.toml @@ -7,10 +7,10 @@ name = "microsoft-agents-authentication-msal" dynamic = ["version", "dependencies"] description = "A msal-based authentication library for Microsoft Agents" authors = [{name = "Microsoft Corporation"}] +license = {text = "MIT"} requires-python = ">=3.9" classifiers = [ "Programming Language :: Python :: 3", - "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ] diff --git a/libraries/microsoft-agents-copilotstudio-client/pyproject.toml b/libraries/microsoft-agents-copilotstudio-client/pyproject.toml index 4f08f7143..4a92b80e2 100644 --- a/libraries/microsoft-agents-copilotstudio-client/pyproject.toml +++ b/libraries/microsoft-agents-copilotstudio-client/pyproject.toml @@ -7,10 +7,10 @@ name = "microsoft-agents-copilotstudio-client" dynamic = ["version", "dependencies"] description = "A client library for Microsoft Agents" authors = [{name = "Microsoft Corporation"}] +license = {text = "MIT"} requires-python = ">=3.9" classifiers = [ "Programming Language :: Python :: 3", - "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ] diff --git a/libraries/microsoft-agents-hosting-aiohttp/pyproject.toml b/libraries/microsoft-agents-hosting-aiohttp/pyproject.toml index 7b93ca9eb..5a3c5c0f3 100644 --- a/libraries/microsoft-agents-hosting-aiohttp/pyproject.toml +++ b/libraries/microsoft-agents-hosting-aiohttp/pyproject.toml @@ -7,10 +7,10 @@ name = "microsoft-agents-hosting-aiohttp" dynamic = ["version", "dependencies"] description = "Integration library for Microsoft Agents with aiohttp" authors = [{name = "Microsoft Corporation"}] +license = {text = "MIT"} requires-python = ">=3.9" classifiers = [ "Programming Language :: Python :: 3", - "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ] diff --git a/libraries/microsoft-agents-hosting-core/pyproject.toml b/libraries/microsoft-agents-hosting-core/pyproject.toml index ba13b8350..629f86aff 100644 --- a/libraries/microsoft-agents-hosting-core/pyproject.toml +++ b/libraries/microsoft-agents-hosting-core/pyproject.toml @@ -7,10 +7,10 @@ name = "microsoft-agents-hosting-core" dynamic = ["version", "dependencies"] description = "Core library for Microsoft Agents" authors = [{name = "Microsoft Corporation"}] +license = {text = "MIT"} requires-python = ">=3.9" classifiers = [ "Programming Language :: Python :: 3", - "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ] diff --git a/libraries/microsoft-agents-hosting-teams/pyproject.toml b/libraries/microsoft-agents-hosting-teams/pyproject.toml index 5009cf7bc..eb5d43a79 100644 --- a/libraries/microsoft-agents-hosting-teams/pyproject.toml +++ b/libraries/microsoft-agents-hosting-teams/pyproject.toml @@ -7,10 +7,10 @@ name = "microsoft-agents-hosting-teams" dynamic = ["version", "dependencies"] description = "Integration library for Microsoft Agents with Teams" authors = [{name = "Microsoft Corporation"}] +license = {text = "MIT"} requires-python = ">=3.9" classifiers = [ "Programming Language :: Python :: 3", - "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ] diff --git a/libraries/microsoft-agents-storage-blob/pyproject.toml b/libraries/microsoft-agents-storage-blob/pyproject.toml index efac60ecb..a184da773 100644 --- a/libraries/microsoft-agents-storage-blob/pyproject.toml +++ b/libraries/microsoft-agents-storage-blob/pyproject.toml @@ -7,10 +7,10 @@ name = "microsoft-agents-storage-blob" dynamic = ["version", "dependencies"] description = "A blob storage library for Microsoft Agents" authors = [{name = "Microsoft Corporation"}] +license = {text = "MIT"} requires-python = ">=3.9" classifiers = [ "Programming Language :: Python :: 3", - "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ] diff --git a/libraries/microsoft-agents-storage-cosmos/pyproject.toml b/libraries/microsoft-agents-storage-cosmos/pyproject.toml index 59d228159..a6743a3c2 100644 --- a/libraries/microsoft-agents-storage-cosmos/pyproject.toml +++ b/libraries/microsoft-agents-storage-cosmos/pyproject.toml @@ -7,10 +7,10 @@ name = "microsoft-agents-storage-cosmos" dynamic = ["version", "dependencies"] description = "A Cosmos DB storage library for Microsoft Agents" authors = [{name = "Microsoft Corporation"}] +license = {text = "MIT"} requires-python = ">=3.9" classifiers = [ "Programming Language :: Python :: 3", - "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ] From 6c023991a52e3724be920b7eb7446418ee9086c8 Mon Sep 17 00:00:00 2001 From: Chris Mullins Date: Thu, 9 Oct 2025 14:56:09 -0700 Subject: [PATCH 2/9] Revising to use explicit license using SPDX format. --- libraries/microsoft-agents-activity/pyproject.toml | 2 +- libraries/microsoft-agents-authentication-msal/pyproject.toml | 2 +- libraries/microsoft-agents-copilotstudio-client/pyproject.toml | 2 +- libraries/microsoft-agents-hosting-aiohttp/pyproject.toml | 2 +- libraries/microsoft-agents-hosting-core/pyproject.toml | 2 +- libraries/microsoft-agents-hosting-teams/pyproject.toml | 2 +- libraries/microsoft-agents-storage-blob/pyproject.toml | 2 +- libraries/microsoft-agents-storage-cosmos/pyproject.toml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/libraries/microsoft-agents-activity/pyproject.toml b/libraries/microsoft-agents-activity/pyproject.toml index 3bf9394f3..f3c26d7c4 100644 --- a/libraries/microsoft-agents-activity/pyproject.toml +++ b/libraries/microsoft-agents-activity/pyproject.toml @@ -7,7 +7,7 @@ name = "microsoft-agents-activity" dynamic = ["version"] description = "A protocol library for Microsoft Agents" authors = [{name = "Microsoft Corporation"}] -license = {text = "MIT"} +license = "MIT" requires-python = ">=3.9" classifiers = [ "Programming Language :: Python :: 3", diff --git a/libraries/microsoft-agents-authentication-msal/pyproject.toml b/libraries/microsoft-agents-authentication-msal/pyproject.toml index bf1b3cb51..e07be06fd 100644 --- a/libraries/microsoft-agents-authentication-msal/pyproject.toml +++ b/libraries/microsoft-agents-authentication-msal/pyproject.toml @@ -7,7 +7,7 @@ name = "microsoft-agents-authentication-msal" dynamic = ["version", "dependencies"] description = "A msal-based authentication library for Microsoft Agents" authors = [{name = "Microsoft Corporation"}] -license = {text = "MIT"} +license = "MIT" requires-python = ">=3.9" classifiers = [ "Programming Language :: Python :: 3", diff --git a/libraries/microsoft-agents-copilotstudio-client/pyproject.toml b/libraries/microsoft-agents-copilotstudio-client/pyproject.toml index 4a92b80e2..3cb4a9c91 100644 --- a/libraries/microsoft-agents-copilotstudio-client/pyproject.toml +++ b/libraries/microsoft-agents-copilotstudio-client/pyproject.toml @@ -7,7 +7,7 @@ name = "microsoft-agents-copilotstudio-client" dynamic = ["version", "dependencies"] description = "A client library for Microsoft Agents" authors = [{name = "Microsoft Corporation"}] -license = {text = "MIT"} +license = "MIT" requires-python = ">=3.9" classifiers = [ "Programming Language :: Python :: 3", diff --git a/libraries/microsoft-agents-hosting-aiohttp/pyproject.toml b/libraries/microsoft-agents-hosting-aiohttp/pyproject.toml index 5a3c5c0f3..81ae0bef1 100644 --- a/libraries/microsoft-agents-hosting-aiohttp/pyproject.toml +++ b/libraries/microsoft-agents-hosting-aiohttp/pyproject.toml @@ -7,7 +7,7 @@ name = "microsoft-agents-hosting-aiohttp" dynamic = ["version", "dependencies"] description = "Integration library for Microsoft Agents with aiohttp" authors = [{name = "Microsoft Corporation"}] -license = {text = "MIT"} +license = "MIT" requires-python = ">=3.9" classifiers = [ "Programming Language :: Python :: 3", diff --git a/libraries/microsoft-agents-hosting-core/pyproject.toml b/libraries/microsoft-agents-hosting-core/pyproject.toml index 629f86aff..78f572b45 100644 --- a/libraries/microsoft-agents-hosting-core/pyproject.toml +++ b/libraries/microsoft-agents-hosting-core/pyproject.toml @@ -7,7 +7,7 @@ name = "microsoft-agents-hosting-core" dynamic = ["version", "dependencies"] description = "Core library for Microsoft Agents" authors = [{name = "Microsoft Corporation"}] -license = {text = "MIT"} +license = "MIT" requires-python = ">=3.9" classifiers = [ "Programming Language :: Python :: 3", diff --git a/libraries/microsoft-agents-hosting-teams/pyproject.toml b/libraries/microsoft-agents-hosting-teams/pyproject.toml index eb5d43a79..e79cc1a2f 100644 --- a/libraries/microsoft-agents-hosting-teams/pyproject.toml +++ b/libraries/microsoft-agents-hosting-teams/pyproject.toml @@ -7,7 +7,7 @@ name = "microsoft-agents-hosting-teams" dynamic = ["version", "dependencies"] description = "Integration library for Microsoft Agents with Teams" authors = [{name = "Microsoft Corporation"}] -license = {text = "MIT"} +license = "MIT" requires-python = ">=3.9" classifiers = [ "Programming Language :: Python :: 3", diff --git a/libraries/microsoft-agents-storage-blob/pyproject.toml b/libraries/microsoft-agents-storage-blob/pyproject.toml index a184da773..808cda56a 100644 --- a/libraries/microsoft-agents-storage-blob/pyproject.toml +++ b/libraries/microsoft-agents-storage-blob/pyproject.toml @@ -7,7 +7,7 @@ name = "microsoft-agents-storage-blob" dynamic = ["version", "dependencies"] description = "A blob storage library for Microsoft Agents" authors = [{name = "Microsoft Corporation"}] -license = {text = "MIT"} +license = "MIT" requires-python = ">=3.9" classifiers = [ "Programming Language :: Python :: 3", diff --git a/libraries/microsoft-agents-storage-cosmos/pyproject.toml b/libraries/microsoft-agents-storage-cosmos/pyproject.toml index a6743a3c2..d660caaa7 100644 --- a/libraries/microsoft-agents-storage-cosmos/pyproject.toml +++ b/libraries/microsoft-agents-storage-cosmos/pyproject.toml @@ -7,7 +7,7 @@ name = "microsoft-agents-storage-cosmos" dynamic = ["version", "dependencies"] description = "A Cosmos DB storage library for Microsoft Agents" authors = [{name = "Microsoft Corporation"}] -license = {text = "MIT"} +license = "MIT" requires-python = ">=3.9" classifiers = [ "Programming Language :: Python :: 3", From 1435c50bcef91240be299a4c43716ae434b901e3 Mon Sep 17 00:00:00 2001 From: Chris Mullins Date: Thu, 9 Oct 2025 15:01:57 -0700 Subject: [PATCH 3/9] testing to see what an invalid path license file does --- libraries/microsoft-agents-activity/pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libraries/microsoft-agents-activity/pyproject.toml b/libraries/microsoft-agents-activity/pyproject.toml index f3c26d7c4..af05eb931 100644 --- a/libraries/microsoft-agents-activity/pyproject.toml +++ b/libraries/microsoft-agents-activity/pyproject.toml @@ -8,6 +8,9 @@ dynamic = ["version"] description = "A protocol library for Microsoft Agents" authors = [{name = "Microsoft Corporation"}] license = "MIT" +license-files = [ + "asdfasdfasfdsafasdfLICENSE"] + requires-python = ">=3.9" classifiers = [ "Programming Language :: Python :: 3", From e4fd43483604844eef1a70ec82b80c21cda9d483 Mon Sep 17 00:00:00 2001 From: Chris Mullins Date: Thu, 9 Oct 2025 15:04:43 -0700 Subject: [PATCH 4/9] Confirmed invalid path resulted in a build warning. Adding in correct license file as python standards require. --- libraries/microsoft-agents-activity/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/microsoft-agents-activity/pyproject.toml b/libraries/microsoft-agents-activity/pyproject.toml index af05eb931..0156aa5df 100644 --- a/libraries/microsoft-agents-activity/pyproject.toml +++ b/libraries/microsoft-agents-activity/pyproject.toml @@ -9,7 +9,7 @@ description = "A protocol library for Microsoft Agents" authors = [{name = "Microsoft Corporation"}] license = "MIT" license-files = [ - "asdfasdfasfdsafasdfLICENSE"] + "LICENSE"] requires-python = ">=3.9" classifiers = [ From 473958e3365e8de63216c2a75c8cadfdd0966d54 Mon Sep 17 00:00:00 2001 From: Chris Mullins Date: Thu, 9 Oct 2025 15:05:05 -0700 Subject: [PATCH 5/9] formatting --- libraries/microsoft-agents-activity/pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libraries/microsoft-agents-activity/pyproject.toml b/libraries/microsoft-agents-activity/pyproject.toml index 0156aa5df..34a9b7454 100644 --- a/libraries/microsoft-agents-activity/pyproject.toml +++ b/libraries/microsoft-agents-activity/pyproject.toml @@ -9,7 +9,8 @@ description = "A protocol library for Microsoft Agents" authors = [{name = "Microsoft Corporation"}] license = "MIT" license-files = [ - "LICENSE"] + "LICENSE" +] requires-python = ">=3.9" classifiers = [ From dc70359d46de42a23f2b9980e20bebd783a898c3 Mon Sep 17 00:00:00 2001 From: Chris Mullins Date: Thu, 9 Oct 2025 15:08:10 -0700 Subject: [PATCH 6/9] search in root of repo for the license file. --- libraries/microsoft-agents-activity/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/microsoft-agents-activity/pyproject.toml b/libraries/microsoft-agents-activity/pyproject.toml index 34a9b7454..4d4407ce4 100644 --- a/libraries/microsoft-agents-activity/pyproject.toml +++ b/libraries/microsoft-agents-activity/pyproject.toml @@ -9,7 +9,7 @@ description = "A protocol library for Microsoft Agents" authors = [{name = "Microsoft Corporation"}] license = "MIT" license-files = [ - "LICENSE" + "/LICENSE" ] requires-python = ">=3.9" From 829e97395b1cdaa3952f2e540f5b51dcf67a6370 Mon Sep 17 00:00:00 2001 From: Chris Mullins Date: Thu, 9 Oct 2025 15:15:09 -0700 Subject: [PATCH 7/9] Fix license file path in pyproject.toml to comply with project structure --- libraries/microsoft-agents-activity/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/microsoft-agents-activity/pyproject.toml b/libraries/microsoft-agents-activity/pyproject.toml index 4d4407ce4..08c8a88b0 100644 --- a/libraries/microsoft-agents-activity/pyproject.toml +++ b/libraries/microsoft-agents-activity/pyproject.toml @@ -9,7 +9,7 @@ description = "A protocol library for Microsoft Agents" authors = [{name = "Microsoft Corporation"}] license = "MIT" license-files = [ - "/LICENSE" + "../../../LICENSE" ] requires-python = ">=3.9" From bbf6c7e258a1cf107e59bff02bbd895a2583ae73 Mon Sep 17 00:00:00 2001 From: Chris Mullins Date: Thu, 9 Oct 2025 15:18:22 -0700 Subject: [PATCH 8/9] Alright, let's do this the hard way --- libraries/microsoft-agents-activity/LICENSE | 21 +++++++++++++++++++ .../microsoft-agents-activity/pyproject.toml | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 libraries/microsoft-agents-activity/LICENSE diff --git a/libraries/microsoft-agents-activity/LICENSE b/libraries/microsoft-agents-activity/LICENSE new file mode 100644 index 000000000..9e841e7a2 --- /dev/null +++ b/libraries/microsoft-agents-activity/LICENSE @@ -0,0 +1,21 @@ + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE diff --git a/libraries/microsoft-agents-activity/pyproject.toml b/libraries/microsoft-agents-activity/pyproject.toml index 08c8a88b0..34a9b7454 100644 --- a/libraries/microsoft-agents-activity/pyproject.toml +++ b/libraries/microsoft-agents-activity/pyproject.toml @@ -9,7 +9,7 @@ description = "A protocol library for Microsoft Agents" authors = [{name = "Microsoft Corporation"}] license = "MIT" license-files = [ - "../../../LICENSE" + "LICENSE" ] requires-python = ">=3.9" From e18492bcc3d1cd1ab99e0c501c7e4e1280f596c6 Mon Sep 17 00:00:00 2001 From: Chris Mullins Date: Thu, 9 Oct 2025 15:25:37 -0700 Subject: [PATCH 9/9] Add in License file per package, and import the license file via the license-file directive. This eliminates all the build warnings. --- .../microsoft-agents-activity/pyproject.toml | 5 +---- .../LICENSE | 21 +++++++++++++++++++ .../pyproject.toml | 1 + .../LICENSE | 21 +++++++++++++++++++ .../pyproject.toml | 1 + .../microsoft-agents-hosting-aiohttp/LICENSE | 21 +++++++++++++++++++ .../pyproject.toml | 1 + .../microsoft-agents-hosting-core/LICENSE | 21 +++++++++++++++++++ .../pyproject.toml | 1 + .../microsoft-agents-hosting-teams/LICENSE | 21 +++++++++++++++++++ .../pyproject.toml | 1 + .../microsoft-agents-storage-blob/LICENSE | 21 +++++++++++++++++++ .../pyproject.toml | 1 + .../microsoft-agents-storage-cosmos/LICENSE | 21 +++++++++++++++++++ .../pyproject.toml | 1 + 15 files changed, 155 insertions(+), 4 deletions(-) create mode 100644 libraries/microsoft-agents-authentication-msal/LICENSE create mode 100644 libraries/microsoft-agents-copilotstudio-client/LICENSE create mode 100644 libraries/microsoft-agents-hosting-aiohttp/LICENSE create mode 100644 libraries/microsoft-agents-hosting-core/LICENSE create mode 100644 libraries/microsoft-agents-hosting-teams/LICENSE create mode 100644 libraries/microsoft-agents-storage-blob/LICENSE create mode 100644 libraries/microsoft-agents-storage-cosmos/LICENSE diff --git a/libraries/microsoft-agents-activity/pyproject.toml b/libraries/microsoft-agents-activity/pyproject.toml index 34a9b7454..049566d49 100644 --- a/libraries/microsoft-agents-activity/pyproject.toml +++ b/libraries/microsoft-agents-activity/pyproject.toml @@ -8,10 +8,7 @@ dynamic = ["version"] description = "A protocol library for Microsoft Agents" authors = [{name = "Microsoft Corporation"}] license = "MIT" -license-files = [ - "LICENSE" -] - +license-files = ["LICENSE"] requires-python = ">=3.9" classifiers = [ "Programming Language :: Python :: 3", diff --git a/libraries/microsoft-agents-authentication-msal/LICENSE b/libraries/microsoft-agents-authentication-msal/LICENSE new file mode 100644 index 000000000..9e841e7a2 --- /dev/null +++ b/libraries/microsoft-agents-authentication-msal/LICENSE @@ -0,0 +1,21 @@ + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE diff --git a/libraries/microsoft-agents-authentication-msal/pyproject.toml b/libraries/microsoft-agents-authentication-msal/pyproject.toml index e07be06fd..33104f434 100644 --- a/libraries/microsoft-agents-authentication-msal/pyproject.toml +++ b/libraries/microsoft-agents-authentication-msal/pyproject.toml @@ -8,6 +8,7 @@ dynamic = ["version", "dependencies"] description = "A msal-based authentication library for Microsoft Agents" authors = [{name = "Microsoft Corporation"}] license = "MIT" +license-files = ["LICENSE"] requires-python = ">=3.9" classifiers = [ "Programming Language :: Python :: 3", diff --git a/libraries/microsoft-agents-copilotstudio-client/LICENSE b/libraries/microsoft-agents-copilotstudio-client/LICENSE new file mode 100644 index 000000000..9e841e7a2 --- /dev/null +++ b/libraries/microsoft-agents-copilotstudio-client/LICENSE @@ -0,0 +1,21 @@ + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE diff --git a/libraries/microsoft-agents-copilotstudio-client/pyproject.toml b/libraries/microsoft-agents-copilotstudio-client/pyproject.toml index 3cb4a9c91..79b03268f 100644 --- a/libraries/microsoft-agents-copilotstudio-client/pyproject.toml +++ b/libraries/microsoft-agents-copilotstudio-client/pyproject.toml @@ -8,6 +8,7 @@ dynamic = ["version", "dependencies"] description = "A client library for Microsoft Agents" authors = [{name = "Microsoft Corporation"}] license = "MIT" +license-files = ["LICENSE"] requires-python = ">=3.9" classifiers = [ "Programming Language :: Python :: 3", diff --git a/libraries/microsoft-agents-hosting-aiohttp/LICENSE b/libraries/microsoft-agents-hosting-aiohttp/LICENSE new file mode 100644 index 000000000..9e841e7a2 --- /dev/null +++ b/libraries/microsoft-agents-hosting-aiohttp/LICENSE @@ -0,0 +1,21 @@ + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE diff --git a/libraries/microsoft-agents-hosting-aiohttp/pyproject.toml b/libraries/microsoft-agents-hosting-aiohttp/pyproject.toml index 81ae0bef1..a6943058d 100644 --- a/libraries/microsoft-agents-hosting-aiohttp/pyproject.toml +++ b/libraries/microsoft-agents-hosting-aiohttp/pyproject.toml @@ -8,6 +8,7 @@ dynamic = ["version", "dependencies"] description = "Integration library for Microsoft Agents with aiohttp" authors = [{name = "Microsoft Corporation"}] license = "MIT" +license-files = ["LICENSE"] requires-python = ">=3.9" classifiers = [ "Programming Language :: Python :: 3", diff --git a/libraries/microsoft-agents-hosting-core/LICENSE b/libraries/microsoft-agents-hosting-core/LICENSE new file mode 100644 index 000000000..9e841e7a2 --- /dev/null +++ b/libraries/microsoft-agents-hosting-core/LICENSE @@ -0,0 +1,21 @@ + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE diff --git a/libraries/microsoft-agents-hosting-core/pyproject.toml b/libraries/microsoft-agents-hosting-core/pyproject.toml index 78f572b45..011dfc0df 100644 --- a/libraries/microsoft-agents-hosting-core/pyproject.toml +++ b/libraries/microsoft-agents-hosting-core/pyproject.toml @@ -8,6 +8,7 @@ dynamic = ["version", "dependencies"] description = "Core library for Microsoft Agents" authors = [{name = "Microsoft Corporation"}] license = "MIT" +license-files = ["LICENSE"] requires-python = ">=3.9" classifiers = [ "Programming Language :: Python :: 3", diff --git a/libraries/microsoft-agents-hosting-teams/LICENSE b/libraries/microsoft-agents-hosting-teams/LICENSE new file mode 100644 index 000000000..9e841e7a2 --- /dev/null +++ b/libraries/microsoft-agents-hosting-teams/LICENSE @@ -0,0 +1,21 @@ + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE diff --git a/libraries/microsoft-agents-hosting-teams/pyproject.toml b/libraries/microsoft-agents-hosting-teams/pyproject.toml index e79cc1a2f..b3dcc5348 100644 --- a/libraries/microsoft-agents-hosting-teams/pyproject.toml +++ b/libraries/microsoft-agents-hosting-teams/pyproject.toml @@ -8,6 +8,7 @@ dynamic = ["version", "dependencies"] description = "Integration library for Microsoft Agents with Teams" authors = [{name = "Microsoft Corporation"}] license = "MIT" +license-files = ["LICENSE"] requires-python = ">=3.9" classifiers = [ "Programming Language :: Python :: 3", diff --git a/libraries/microsoft-agents-storage-blob/LICENSE b/libraries/microsoft-agents-storage-blob/LICENSE new file mode 100644 index 000000000..9e841e7a2 --- /dev/null +++ b/libraries/microsoft-agents-storage-blob/LICENSE @@ -0,0 +1,21 @@ + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE diff --git a/libraries/microsoft-agents-storage-blob/pyproject.toml b/libraries/microsoft-agents-storage-blob/pyproject.toml index 808cda56a..09f2fa4fd 100644 --- a/libraries/microsoft-agents-storage-blob/pyproject.toml +++ b/libraries/microsoft-agents-storage-blob/pyproject.toml @@ -8,6 +8,7 @@ dynamic = ["version", "dependencies"] description = "A blob storage library for Microsoft Agents" authors = [{name = "Microsoft Corporation"}] license = "MIT" +license-files = ["LICENSE"] requires-python = ">=3.9" classifiers = [ "Programming Language :: Python :: 3", diff --git a/libraries/microsoft-agents-storage-cosmos/LICENSE b/libraries/microsoft-agents-storage-cosmos/LICENSE new file mode 100644 index 000000000..9e841e7a2 --- /dev/null +++ b/libraries/microsoft-agents-storage-cosmos/LICENSE @@ -0,0 +1,21 @@ + MIT License + + Copyright (c) Microsoft Corporation. + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE diff --git a/libraries/microsoft-agents-storage-cosmos/pyproject.toml b/libraries/microsoft-agents-storage-cosmos/pyproject.toml index d660caaa7..5e743e18e 100644 --- a/libraries/microsoft-agents-storage-cosmos/pyproject.toml +++ b/libraries/microsoft-agents-storage-cosmos/pyproject.toml @@ -8,6 +8,7 @@ dynamic = ["version", "dependencies"] description = "A Cosmos DB storage library for Microsoft Agents" authors = [{name = "Microsoft Corporation"}] license = "MIT" +license-files = ["LICENSE"] requires-python = ">=3.9" classifiers = [ "Programming Language :: Python :: 3",