From 962ed3cc230d5e4b7099af50dfba490ef03df261 Mon Sep 17 00:00:00 2001 From: Richard Gebhardt Date: Sat, 11 Oct 2025 09:12:50 -0400 Subject: [PATCH 1/4] chore: package fixes and cleanup Signed-off-by: Richard Gebhardt --- src/oci-api-mcp-server/pyproject.toml | 3 ++ .../pyproject.toml | 3 ++ src/oci-compute-mcp-server/pyproject.toml | 3 ++ src/oci-identity-mcp-server/pyproject.toml | 3 ++ src/oci-logging-mcp-server/LICENSE.txt | 35 +++++++++++++++++++ src/oci-logging-mcp-server/pyproject.toml | 2 +- src/oci-migration-mcp-server/pyproject.toml | 3 ++ src/oci-monitoring-mcp-server/pyproject.toml | 3 ++ .../pyproject.toml | 3 ++ src/oci-networking-mcp-server/pyproject.toml | 3 ++ src/oci-object-storage-mcp-server/LICENSE.txt | 35 +++++++++++++++++++ .../pyproject.toml | 2 +- src/oci-pricing-mcp-server/LICENSE.txt | 35 +++++++++++++++++++ src/oci-pricing-mcp-server/pyproject.toml | 9 ++++- src/oci-registry-mcp-server/pyproject.toml | 3 ++ .../pyproject.toml | 3 ++ src/oci-usage-mcp-server/LICENSE.txt | 35 +++++++++++++++++++ src/oci-usage-mcp-server/pyproject.toml | 7 +++- 18 files changed, 186 insertions(+), 4 deletions(-) create mode 100644 src/oci-logging-mcp-server/LICENSE.txt create mode 100644 src/oci-object-storage-mcp-server/LICENSE.txt create mode 100644 src/oci-pricing-mcp-server/LICENSE.txt create mode 100644 src/oci-usage-mcp-server/LICENSE.txt diff --git a/src/oci-api-mcp-server/pyproject.toml b/src/oci-api-mcp-server/pyproject.toml index 1097a9f..e805ec8 100644 --- a/src/oci-api-mcp-server/pyproject.toml +++ b/src/oci-api-mcp-server/pyproject.toml @@ -6,6 +6,9 @@ readme = "README.md" requires-python = ">=3.13" license = "UPL-1.0" license-files = ["LICENSE.txt"] +authors = [ + {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"} +] dependencies = [ "fastmcp==2.12.2", "oci==2.160.0" diff --git a/src/oci-compute-instance-agent-mcp-server/pyproject.toml b/src/oci-compute-instance-agent-mcp-server/pyproject.toml index 3a13166..f828cf4 100644 --- a/src/oci-compute-instance-agent-mcp-server/pyproject.toml +++ b/src/oci-compute-instance-agent-mcp-server/pyproject.toml @@ -6,6 +6,9 @@ readme = "README.md" requires-python = ">=3.13" license = "UPL-1.0" license-files = ["LICENSE.txt"] +authors = [ + {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"} +] dependencies = [ "oci==2.160.0", "fastmcp==2.12.2", diff --git a/src/oci-compute-mcp-server/pyproject.toml b/src/oci-compute-mcp-server/pyproject.toml index 9bf8413..567ad1a 100644 --- a/src/oci-compute-mcp-server/pyproject.toml +++ b/src/oci-compute-mcp-server/pyproject.toml @@ -6,6 +6,9 @@ readme = "README.md" requires-python = ">=3.13" license = "UPL-1.0" license-files = ["LICENSE.txt"] +authors = [ + {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"} +] dependencies = [ "fastmcp==2.12.2", "oci==2.160.0", diff --git a/src/oci-identity-mcp-server/pyproject.toml b/src/oci-identity-mcp-server/pyproject.toml index 7acb0d2..d0a0be6 100644 --- a/src/oci-identity-mcp-server/pyproject.toml +++ b/src/oci-identity-mcp-server/pyproject.toml @@ -6,6 +6,9 @@ readme = "README.md" requires-python = ">=3.13" license = "UPL-1.0" license-files = ["LICENSE.txt"] +authors = [ + {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"} +] dependencies = [ "fastmcp==2.12.2", "oci==2.160.0", diff --git a/src/oci-logging-mcp-server/LICENSE.txt b/src/oci-logging-mcp-server/LICENSE.txt new file mode 100644 index 0000000..8dc7c07 --- /dev/null +++ b/src/oci-logging-mcp-server/LICENSE.txt @@ -0,0 +1,35 @@ +Copyright (c) 2025 Oracle and/or its affiliates. + +The Universal Permissive License (UPL), Version 1.0 + +Subject to the condition set forth below, permission is hereby granted to any +person obtaining a copy of this software, associated documentation and/or data +(collectively the "Software"), free of charge and under any and all copyright +rights in the Software, and any and all patent rights owned or freely +licensable by each licensor hereunder covering either (i) the unmodified +Software as contributed to or provided by such licensor, or (ii) the Larger +Works (as defined below), to deal in both + +(a) the Software, and +(b) any piece of software and/or hardware listed in the lrgrwrks.txt file if +one is included with the Software (each a "Larger Work" to which the Software +is contributed by such licensors), + +without restriction, including without limitation the rights to copy, create +derivative works of, display, perform, and distribute the Software and make, +use, sell, offer for sale, import, export, have made, and have sold the +Software and the Larger Work(s), and to sublicense the foregoing rights on +either these or other terms. + +This license is subject to the following condition: +The above copyright notice and either this complete permission notice or at +a minimum a reference to the UPL must 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. \ No newline at end of file diff --git a/src/oci-logging-mcp-server/pyproject.toml b/src/oci-logging-mcp-server/pyproject.toml index 841273f..408cc09 100644 --- a/src/oci-logging-mcp-server/pyproject.toml +++ b/src/oci-logging-mcp-server/pyproject.toml @@ -4,7 +4,7 @@ version = "0.1.0" description = "OCI Logging Service MCP server" readme = "README.md" authors = [ - { name = "Richard Gebhardt", email = "richard.gebhardt@oracle.com" } + {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"} ] requires-python = ">=3.13" dependencies = [ diff --git a/src/oci-migration-mcp-server/pyproject.toml b/src/oci-migration-mcp-server/pyproject.toml index d6b052f..3e47ca4 100644 --- a/src/oci-migration-mcp-server/pyproject.toml +++ b/src/oci-migration-mcp-server/pyproject.toml @@ -6,6 +6,9 @@ readme = "README.md" requires-python = ">=3.13" license = "UPL-1.0" license-files = ["LICENSE.txt"] +authors = [ + {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"} +] dependencies = [ "fastmcp==2.12.2", "oci==2.160.0", diff --git a/src/oci-monitoring-mcp-server/pyproject.toml b/src/oci-monitoring-mcp-server/pyproject.toml index cc94348..498283c 100644 --- a/src/oci-monitoring-mcp-server/pyproject.toml +++ b/src/oci-monitoring-mcp-server/pyproject.toml @@ -6,6 +6,9 @@ readme = "README.md" requires-python = ">=3.13" license = "UPL-1.0" license-files = ["LICENSE.txt"] +authors = [ + {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"} +] dependencies = [ "fastmcp==2.12.2", "oci==2.160.0", diff --git a/src/oci-network-load-balancer-mcp-server/pyproject.toml b/src/oci-network-load-balancer-mcp-server/pyproject.toml index 82eb696..0a9a56e 100644 --- a/src/oci-network-load-balancer-mcp-server/pyproject.toml +++ b/src/oci-network-load-balancer-mcp-server/pyproject.toml @@ -6,6 +6,9 @@ readme = "README.md" requires-python = ">=3.13" license = "UPL-1.0" license-files = ["LICENSE.txt"] +authors = [ + {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"} +] dependencies = [ "fastmcp==2.12.2", "oci==2.160.0", diff --git a/src/oci-networking-mcp-server/pyproject.toml b/src/oci-networking-mcp-server/pyproject.toml index 4249c33..f7b05aa 100644 --- a/src/oci-networking-mcp-server/pyproject.toml +++ b/src/oci-networking-mcp-server/pyproject.toml @@ -6,6 +6,9 @@ readme = "README.md" requires-python = ">=3.13" license = "UPL-1.0" license-files = ["LICENSE.txt"] +authors = [ + {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"} +] dependencies = [ "fastmcp==2.12.2", "oci==2.160.0", diff --git a/src/oci-object-storage-mcp-server/LICENSE.txt b/src/oci-object-storage-mcp-server/LICENSE.txt new file mode 100644 index 0000000..8dc7c07 --- /dev/null +++ b/src/oci-object-storage-mcp-server/LICENSE.txt @@ -0,0 +1,35 @@ +Copyright (c) 2025 Oracle and/or its affiliates. + +The Universal Permissive License (UPL), Version 1.0 + +Subject to the condition set forth below, permission is hereby granted to any +person obtaining a copy of this software, associated documentation and/or data +(collectively the "Software"), free of charge and under any and all copyright +rights in the Software, and any and all patent rights owned or freely +licensable by each licensor hereunder covering either (i) the unmodified +Software as contributed to or provided by such licensor, or (ii) the Larger +Works (as defined below), to deal in both + +(a) the Software, and +(b) any piece of software and/or hardware listed in the lrgrwrks.txt file if +one is included with the Software (each a "Larger Work" to which the Software +is contributed by such licensors), + +without restriction, including without limitation the rights to copy, create +derivative works of, display, perform, and distribute the Software and make, +use, sell, offer for sale, import, export, have made, and have sold the +Software and the Larger Work(s), and to sublicense the foregoing rights on +either these or other terms. + +This license is subject to the following condition: +The above copyright notice and either this complete permission notice or at +a minimum a reference to the UPL must 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. \ No newline at end of file diff --git a/src/oci-object-storage-mcp-server/pyproject.toml b/src/oci-object-storage-mcp-server/pyproject.toml index 1570fce..26e01c6 100644 --- a/src/oci-object-storage-mcp-server/pyproject.toml +++ b/src/oci-object-storage-mcp-server/pyproject.toml @@ -4,7 +4,7 @@ version = "0.1.0" description = "OCI Object Storage Service MCP server" readme = "README.md" authors = [ - { name = "Irfan Ahmed", email = "irfan.ahmed@oracle.com" } + {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"} ] requires-python = ">=3.13" dependencies = [ diff --git a/src/oci-pricing-mcp-server/LICENSE.txt b/src/oci-pricing-mcp-server/LICENSE.txt new file mode 100644 index 0000000..8dc7c07 --- /dev/null +++ b/src/oci-pricing-mcp-server/LICENSE.txt @@ -0,0 +1,35 @@ +Copyright (c) 2025 Oracle and/or its affiliates. + +The Universal Permissive License (UPL), Version 1.0 + +Subject to the condition set forth below, permission is hereby granted to any +person obtaining a copy of this software, associated documentation and/or data +(collectively the "Software"), free of charge and under any and all copyright +rights in the Software, and any and all patent rights owned or freely +licensable by each licensor hereunder covering either (i) the unmodified +Software as contributed to or provided by such licensor, or (ii) the Larger +Works (as defined below), to deal in both + +(a) the Software, and +(b) any piece of software and/or hardware listed in the lrgrwrks.txt file if +one is included with the Software (each a "Larger Work" to which the Software +is contributed by such licensors), + +without restriction, including without limitation the rights to copy, create +derivative works of, display, perform, and distribute the Software and make, +use, sell, offer for sale, import, export, have made, and have sold the +Software and the Larger Work(s), and to sublicense the foregoing rights on +either these or other terms. + +This license is subject to the following condition: +The above copyright notice and either this complete permission notice or at +a minimum a reference to the UPL must 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. \ No newline at end of file diff --git a/src/oci-pricing-mcp-server/pyproject.toml b/src/oci-pricing-mcp-server/pyproject.toml index c38eb24..58f3f8e 100644 --- a/src/oci-pricing-mcp-server/pyproject.toml +++ b/src/oci-pricing-mcp-server/pyproject.toml @@ -1,6 +1,13 @@ [project] name = "oci-pricing-mcp-server" version = "0.1.0" +description = "OCI Pricing MCP Server" +readme = "README.md" +license = "UPL-1.0" +license-files = ["LICENSE.txt"] +authors = [ + {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"} +] requires-python = ">=3.11" dependencies = [ "fastmcp>=2.0.0", @@ -30,4 +37,4 @@ fix = true [tool.ruff.lint] select = ["E","F","I","UP","B"] -ignore = ["E501"] +ignore = ["E501"] diff --git a/src/oci-registry-mcp-server/pyproject.toml b/src/oci-registry-mcp-server/pyproject.toml index 8eaaa48..4d2288c 100644 --- a/src/oci-registry-mcp-server/pyproject.toml +++ b/src/oci-registry-mcp-server/pyproject.toml @@ -6,6 +6,9 @@ readme = "README.md" requires-python = ">=3.13" license = "UPL-1.0" license-files = ["LICENSE.txt"] +authors = [ + {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"} +] dependencies = [ "fastmcp==2.12.2", "oci==2.160.0", diff --git a/src/oci-resource-search-mcp-server/pyproject.toml b/src/oci-resource-search-mcp-server/pyproject.toml index c97a394..f706734 100644 --- a/src/oci-resource-search-mcp-server/pyproject.toml +++ b/src/oci-resource-search-mcp-server/pyproject.toml @@ -6,6 +6,9 @@ readme = "README.md" requires-python = ">=3.13" license = "UPL-1.0" license-files = ["LICENSE.txt"] +authors = [ + {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"} +] dependencies = [ "fastmcp==2.12.2", "oci==2.160.0", diff --git a/src/oci-usage-mcp-server/LICENSE.txt b/src/oci-usage-mcp-server/LICENSE.txt new file mode 100644 index 0000000..8dc7c07 --- /dev/null +++ b/src/oci-usage-mcp-server/LICENSE.txt @@ -0,0 +1,35 @@ +Copyright (c) 2025 Oracle and/or its affiliates. + +The Universal Permissive License (UPL), Version 1.0 + +Subject to the condition set forth below, permission is hereby granted to any +person obtaining a copy of this software, associated documentation and/or data +(collectively the "Software"), free of charge and under any and all copyright +rights in the Software, and any and all patent rights owned or freely +licensable by each licensor hereunder covering either (i) the unmodified +Software as contributed to or provided by such licensor, or (ii) the Larger +Works (as defined below), to deal in both + +(a) the Software, and +(b) any piece of software and/or hardware listed in the lrgrwrks.txt file if +one is included with the Software (each a "Larger Work" to which the Software +is contributed by such licensors), + +without restriction, including without limitation the rights to copy, create +derivative works of, display, perform, and distribute the Software and make, +use, sell, offer for sale, import, export, have made, and have sold the +Software and the Larger Work(s), and to sublicense the foregoing rights on +either these or other terms. + +This license is subject to the following condition: +The above copyright notice and either this complete permission notice or at +a minimum a reference to the UPL must 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. \ No newline at end of file diff --git a/src/oci-usage-mcp-server/pyproject.toml b/src/oci-usage-mcp-server/pyproject.toml index 332d437..ad451de 100644 --- a/src/oci-usage-mcp-server/pyproject.toml +++ b/src/oci-usage-mcp-server/pyproject.toml @@ -1,8 +1,13 @@ [project] -name = "oracle.oci-Usage-mcp-server" +name = "oracle.oci-usage-mcp-server" version = "0.1.0" description = "OCI Usage MCP server" readme = "README.md" +license = "UPL-1.0" +license-files = ["LICENSE.txt"] +authors = [ + {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"} +] requires-python = ">=3.13" dependencies = [ "fastmcp==2.12.2", From 8f9d4ce6a862405ae766740ad1aa70122a353cd1 Mon Sep 17 00:00:00 2001 From: Richard Gebhardt Date: Sat, 11 Oct 2025 09:28:30 -0400 Subject: [PATCH 2/4] chore: add project classifiers Signed-off-by: Richard Gebhardt --- src/oci-api-mcp-server/pyproject.toml | 7 +++++++ src/oci-compute-instance-agent-mcp-server/pyproject.toml | 7 +++++++ src/oci-compute-mcp-server/pyproject.toml | 7 +++++++ src/oci-identity-mcp-server/pyproject.toml | 7 +++++++ src/oci-logging-mcp-server/pyproject.toml | 7 +++++++ src/oci-migration-mcp-server/pyproject.toml | 7 +++++++ src/oci-monitoring-mcp-server/pyproject.toml | 7 +++++++ src/oci-network-load-balancer-mcp-server/pyproject.toml | 7 +++++++ src/oci-networking-mcp-server/pyproject.toml | 7 +++++++ src/oci-object-storage-mcp-server/pyproject.toml | 7 +++++++ src/oci-pricing-mcp-server/pyproject.toml | 9 +++++++++ src/oci-registry-mcp-server/pyproject.toml | 7 +++++++ src/oci-resource-search-mcp-server/pyproject.toml | 7 +++++++ src/oci-usage-mcp-server/pyproject.toml | 7 +++++++ 14 files changed, 100 insertions(+) diff --git a/src/oci-api-mcp-server/pyproject.toml b/src/oci-api-mcp-server/pyproject.toml index e805ec8..ca1792e 100644 --- a/src/oci-api-mcp-server/pyproject.toml +++ b/src/oci-api-mcp-server/pyproject.toml @@ -14,6 +14,13 @@ dependencies = [ "oci==2.160.0" ] +classifiers = [ + "License :: OSI Approved :: Universal Permissive License", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Programming Language :: Python :: 3.13", +] + [project.scripts] "oracle.oci-api-mcp-server" = "oracle.oci_api_mcp_server.server:main" diff --git a/src/oci-compute-instance-agent-mcp-server/pyproject.toml b/src/oci-compute-instance-agent-mcp-server/pyproject.toml index f828cf4..88c999b 100644 --- a/src/oci-compute-instance-agent-mcp-server/pyproject.toml +++ b/src/oci-compute-instance-agent-mcp-server/pyproject.toml @@ -14,6 +14,13 @@ dependencies = [ "fastmcp==2.12.2", ] +classifiers = [ + "License :: OSI Approved :: Universal Permissive License", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Programming Language :: Python :: 3.13", +] + [project.scripts] "oracle.oci-compute-instance-agent-mcp-server" = "oracle.oci_compute_instance_agent_mcp_server.server:main" diff --git a/src/oci-compute-mcp-server/pyproject.toml b/src/oci-compute-mcp-server/pyproject.toml index 567ad1a..2288df3 100644 --- a/src/oci-compute-mcp-server/pyproject.toml +++ b/src/oci-compute-mcp-server/pyproject.toml @@ -14,6 +14,13 @@ dependencies = [ "oci==2.160.0", ] +classifiers = [ + "License :: OSI Approved :: Universal Permissive License", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Programming Language :: Python :: 3.13", +] + [project.scripts] "oracle.oci-compute-mcp-server" = "oracle.oci_compute_mcp_server.server:main" diff --git a/src/oci-identity-mcp-server/pyproject.toml b/src/oci-identity-mcp-server/pyproject.toml index d0a0be6..50524fc 100644 --- a/src/oci-identity-mcp-server/pyproject.toml +++ b/src/oci-identity-mcp-server/pyproject.toml @@ -14,6 +14,13 @@ dependencies = [ "oci==2.160.0", ] +classifiers = [ + "License :: OSI Approved :: Universal Permissive License", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Programming Language :: Python :: 3.13", +] + [project.scripts] "oracle.oci-identity-mcp-server" = "oracle.oci_identity_mcp_server.server:main" diff --git a/src/oci-logging-mcp-server/pyproject.toml b/src/oci-logging-mcp-server/pyproject.toml index 408cc09..7155b71 100644 --- a/src/oci-logging-mcp-server/pyproject.toml +++ b/src/oci-logging-mcp-server/pyproject.toml @@ -12,6 +12,13 @@ dependencies = [ "oci==2.160.0" ] +classifiers = [ + "License :: OSI Approved :: Universal Permissive License", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Programming Language :: Python :: 3.13", +] + [project.scripts] "oracle.oci-logging-mcp-server" = "oracle.oci_logging_mcp_server.server:main" diff --git a/src/oci-migration-mcp-server/pyproject.toml b/src/oci-migration-mcp-server/pyproject.toml index 3e47ca4..00e8698 100644 --- a/src/oci-migration-mcp-server/pyproject.toml +++ b/src/oci-migration-mcp-server/pyproject.toml @@ -14,6 +14,13 @@ dependencies = [ "oci==2.160.0", ] +classifiers = [ + "License :: OSI Approved :: Universal Permissive License", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Programming Language :: Python :: 3.13", +] + [project.scripts] "oracle.oci-migration-mcp-server" = "oracle.oci_migration_mcp_server.server:main" diff --git a/src/oci-monitoring-mcp-server/pyproject.toml b/src/oci-monitoring-mcp-server/pyproject.toml index 498283c..7eb41fc 100644 --- a/src/oci-monitoring-mcp-server/pyproject.toml +++ b/src/oci-monitoring-mcp-server/pyproject.toml @@ -14,6 +14,13 @@ dependencies = [ "oci==2.160.0", ] +classifiers = [ + "License :: OSI Approved :: Universal Permissive License", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Programming Language :: Python :: 3.13", +] + [project.scripts] "oracle.oci-monitoring-mcp-server" = "oracle.oci_monitoring_mcp_server.server:main" diff --git a/src/oci-network-load-balancer-mcp-server/pyproject.toml b/src/oci-network-load-balancer-mcp-server/pyproject.toml index 0a9a56e..9904c55 100644 --- a/src/oci-network-load-balancer-mcp-server/pyproject.toml +++ b/src/oci-network-load-balancer-mcp-server/pyproject.toml @@ -14,6 +14,13 @@ dependencies = [ "oci==2.160.0", ] +classifiers = [ + "License :: OSI Approved :: Universal Permissive License", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Programming Language :: Python :: 3.13", +] + [project.scripts] "oracle.oci-network-load-balancer-mcp-server" = "oracle.oci_network_load_balancer_mcp_server.server:main" diff --git a/src/oci-networking-mcp-server/pyproject.toml b/src/oci-networking-mcp-server/pyproject.toml index f7b05aa..199fd8d 100644 --- a/src/oci-networking-mcp-server/pyproject.toml +++ b/src/oci-networking-mcp-server/pyproject.toml @@ -14,6 +14,13 @@ dependencies = [ "oci==2.160.0", ] +classifiers = [ + "License :: OSI Approved :: Universal Permissive License", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Programming Language :: Python :: 3.13", +] + [project.scripts] "oracle.oci-networking-mcp-server" = "oracle.oci_networking_mcp_server.server:main" diff --git a/src/oci-object-storage-mcp-server/pyproject.toml b/src/oci-object-storage-mcp-server/pyproject.toml index 26e01c6..bd6083d 100644 --- a/src/oci-object-storage-mcp-server/pyproject.toml +++ b/src/oci-object-storage-mcp-server/pyproject.toml @@ -12,6 +12,13 @@ dependencies = [ "oci==2.160.0" ] +classifiers = [ + "License :: OSI Approved :: Universal Permissive License", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Programming Language :: Python :: 3.13", +] + [project.scripts] "oracle.oci-object-storage-mcp-server" = "oracle.oci_object_storage_mcp_server.server:main" diff --git a/src/oci-pricing-mcp-server/pyproject.toml b/src/oci-pricing-mcp-server/pyproject.toml index 58f3f8e..0e4980b 100644 --- a/src/oci-pricing-mcp-server/pyproject.toml +++ b/src/oci-pricing-mcp-server/pyproject.toml @@ -16,6 +16,15 @@ dependencies = [ "pycountry>=22.3.5", ] +classifiers = [ + "License :: OSI Approved :: Universal Permissive License", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", +] + [project.scripts] oci-pricing-mcp = "oci_pricing_mcp.entry:main" diff --git a/src/oci-registry-mcp-server/pyproject.toml b/src/oci-registry-mcp-server/pyproject.toml index 4d2288c..a898175 100644 --- a/src/oci-registry-mcp-server/pyproject.toml +++ b/src/oci-registry-mcp-server/pyproject.toml @@ -14,6 +14,13 @@ dependencies = [ "oci==2.160.0", ] +classifiers = [ + "License :: OSI Approved :: Universal Permissive License", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Programming Language :: Python :: 3.13", +] + [project.scripts] "oracle.oci-registry-mcp-server" = "oracle.oci_registry_mcp_server.server:main" diff --git a/src/oci-resource-search-mcp-server/pyproject.toml b/src/oci-resource-search-mcp-server/pyproject.toml index f706734..a26afe3 100644 --- a/src/oci-resource-search-mcp-server/pyproject.toml +++ b/src/oci-resource-search-mcp-server/pyproject.toml @@ -14,6 +14,13 @@ dependencies = [ "oci==2.160.0", ] +classifiers = [ + "License :: OSI Approved :: Universal Permissive License", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Programming Language :: Python :: 3.13", +] + [project.scripts] "oracle.oci-resource-search-mcp-server" = "oracle.oci_resource_search_mcp_server.server:main" diff --git a/src/oci-usage-mcp-server/pyproject.toml b/src/oci-usage-mcp-server/pyproject.toml index ad451de..c32c09e 100644 --- a/src/oci-usage-mcp-server/pyproject.toml +++ b/src/oci-usage-mcp-server/pyproject.toml @@ -14,6 +14,13 @@ dependencies = [ "oci==2.160.0" ] +classifiers = [ + "License :: OSI Approved :: Universal Permissive License", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Programming Language :: Python :: 3.13", +] + [project.scripts] "oracle.oci-usage-mcp-server" = "oracle.oci_usage_mcp_server.server:main" From f8341214a4c89c1efca043c501d1d60ee4f851cc Mon Sep 17 00:00:00 2001 From: Richard Gebhardt Date: Sat, 11 Oct 2025 09:32:49 -0400 Subject: [PATCH 3/4] chore: more cleanup (convention) Signed-off-by: Richard Gebhardt --- src/oci-api-mcp-server/pyproject.toml | 4 ++-- src/oci-compute-instance-agent-mcp-server/pyproject.toml | 2 +- src/oci-compute-mcp-server/pyproject.toml | 2 +- src/oci-identity-mcp-server/pyproject.toml | 2 +- src/oci-logging-mcp-server/pyproject.toml | 4 ++-- src/oci-migration-mcp-server/pyproject.toml | 2 +- src/oci-monitoring-mcp-server/pyproject.toml | 2 +- src/oci-network-load-balancer-mcp-server/pyproject.toml | 2 +- src/oci-networking-mcp-server/pyproject.toml | 2 +- src/oci-object-storage-mcp-server/pyproject.toml | 4 ++-- src/oci-pricing-mcp-server/pyproject.toml | 2 +- src/oci-registry-mcp-server/pyproject.toml | 2 +- src/oci-resource-search-mcp-server/pyproject.toml | 2 +- src/oci-usage-mcp-server/pyproject.toml | 4 ++-- 14 files changed, 18 insertions(+), 18 deletions(-) diff --git a/src/oci-api-mcp-server/pyproject.toml b/src/oci-api-mcp-server/pyproject.toml index ca1792e..696263d 100644 --- a/src/oci-api-mcp-server/pyproject.toml +++ b/src/oci-api-mcp-server/pyproject.toml @@ -7,11 +7,11 @@ requires-python = ">=3.13" license = "UPL-1.0" license-files = ["LICENSE.txt"] authors = [ - {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"} + {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"}, ] dependencies = [ "fastmcp==2.12.2", - "oci==2.160.0" + "oci==2.160.0", ] classifiers = [ diff --git a/src/oci-compute-instance-agent-mcp-server/pyproject.toml b/src/oci-compute-instance-agent-mcp-server/pyproject.toml index 88c999b..a97ac85 100644 --- a/src/oci-compute-instance-agent-mcp-server/pyproject.toml +++ b/src/oci-compute-instance-agent-mcp-server/pyproject.toml @@ -7,7 +7,7 @@ requires-python = ">=3.13" license = "UPL-1.0" license-files = ["LICENSE.txt"] authors = [ - {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"} + {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"}, ] dependencies = [ "oci==2.160.0", diff --git a/src/oci-compute-mcp-server/pyproject.toml b/src/oci-compute-mcp-server/pyproject.toml index 2288df3..73a9b4f 100644 --- a/src/oci-compute-mcp-server/pyproject.toml +++ b/src/oci-compute-mcp-server/pyproject.toml @@ -7,7 +7,7 @@ requires-python = ">=3.13" license = "UPL-1.0" license-files = ["LICENSE.txt"] authors = [ - {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"} + {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"}, ] dependencies = [ "fastmcp==2.12.2", diff --git a/src/oci-identity-mcp-server/pyproject.toml b/src/oci-identity-mcp-server/pyproject.toml index 50524fc..31b78e6 100644 --- a/src/oci-identity-mcp-server/pyproject.toml +++ b/src/oci-identity-mcp-server/pyproject.toml @@ -7,7 +7,7 @@ requires-python = ">=3.13" license = "UPL-1.0" license-files = ["LICENSE.txt"] authors = [ - {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"} + {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"}, ] dependencies = [ "fastmcp==2.12.2", diff --git a/src/oci-logging-mcp-server/pyproject.toml b/src/oci-logging-mcp-server/pyproject.toml index 7155b71..bd889e7 100644 --- a/src/oci-logging-mcp-server/pyproject.toml +++ b/src/oci-logging-mcp-server/pyproject.toml @@ -4,12 +4,12 @@ version = "0.1.0" description = "OCI Logging Service MCP server" readme = "README.md" authors = [ - {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"} + {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"}, ] requires-python = ">=3.13" dependencies = [ "fastmcp==2.12.2", - "oci==2.160.0" + "oci==2.160.0", ] classifiers = [ diff --git a/src/oci-migration-mcp-server/pyproject.toml b/src/oci-migration-mcp-server/pyproject.toml index 00e8698..bef1d4f 100644 --- a/src/oci-migration-mcp-server/pyproject.toml +++ b/src/oci-migration-mcp-server/pyproject.toml @@ -7,7 +7,7 @@ requires-python = ">=3.13" license = "UPL-1.0" license-files = ["LICENSE.txt"] authors = [ - {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"} + {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"}, ] dependencies = [ "fastmcp==2.12.2", diff --git a/src/oci-monitoring-mcp-server/pyproject.toml b/src/oci-monitoring-mcp-server/pyproject.toml index 7eb41fc..7ef904f 100644 --- a/src/oci-monitoring-mcp-server/pyproject.toml +++ b/src/oci-monitoring-mcp-server/pyproject.toml @@ -7,7 +7,7 @@ requires-python = ">=3.13" license = "UPL-1.0" license-files = ["LICENSE.txt"] authors = [ - {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"} + {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"}, ] dependencies = [ "fastmcp==2.12.2", diff --git a/src/oci-network-load-balancer-mcp-server/pyproject.toml b/src/oci-network-load-balancer-mcp-server/pyproject.toml index 9904c55..bd2dfec 100644 --- a/src/oci-network-load-balancer-mcp-server/pyproject.toml +++ b/src/oci-network-load-balancer-mcp-server/pyproject.toml @@ -7,7 +7,7 @@ requires-python = ">=3.13" license = "UPL-1.0" license-files = ["LICENSE.txt"] authors = [ - {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"} + {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"}, ] dependencies = [ "fastmcp==2.12.2", diff --git a/src/oci-networking-mcp-server/pyproject.toml b/src/oci-networking-mcp-server/pyproject.toml index 199fd8d..20270c7 100644 --- a/src/oci-networking-mcp-server/pyproject.toml +++ b/src/oci-networking-mcp-server/pyproject.toml @@ -7,7 +7,7 @@ requires-python = ">=3.13" license = "UPL-1.0" license-files = ["LICENSE.txt"] authors = [ - {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"} + {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"}, ] dependencies = [ "fastmcp==2.12.2", diff --git a/src/oci-object-storage-mcp-server/pyproject.toml b/src/oci-object-storage-mcp-server/pyproject.toml index bd6083d..2886ec6 100644 --- a/src/oci-object-storage-mcp-server/pyproject.toml +++ b/src/oci-object-storage-mcp-server/pyproject.toml @@ -4,12 +4,12 @@ version = "0.1.0" description = "OCI Object Storage Service MCP server" readme = "README.md" authors = [ - {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"} + {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"}, ] requires-python = ">=3.13" dependencies = [ "fastmcp==2.12.2", - "oci==2.160.0" + "oci==2.160.0", ] classifiers = [ diff --git a/src/oci-pricing-mcp-server/pyproject.toml b/src/oci-pricing-mcp-server/pyproject.toml index 0e4980b..6b6a72c 100644 --- a/src/oci-pricing-mcp-server/pyproject.toml +++ b/src/oci-pricing-mcp-server/pyproject.toml @@ -6,7 +6,7 @@ readme = "README.md" license = "UPL-1.0" license-files = ["LICENSE.txt"] authors = [ - {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"} + {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"}, ] requires-python = ">=3.11" dependencies = [ diff --git a/src/oci-registry-mcp-server/pyproject.toml b/src/oci-registry-mcp-server/pyproject.toml index a898175..4d2f258 100644 --- a/src/oci-registry-mcp-server/pyproject.toml +++ b/src/oci-registry-mcp-server/pyproject.toml @@ -7,7 +7,7 @@ requires-python = ">=3.13" license = "UPL-1.0" license-files = ["LICENSE.txt"] authors = [ - {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"} + {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"}, ] dependencies = [ "fastmcp==2.12.2", diff --git a/src/oci-resource-search-mcp-server/pyproject.toml b/src/oci-resource-search-mcp-server/pyproject.toml index a26afe3..ee909cf 100644 --- a/src/oci-resource-search-mcp-server/pyproject.toml +++ b/src/oci-resource-search-mcp-server/pyproject.toml @@ -7,7 +7,7 @@ requires-python = ">=3.13" license = "UPL-1.0" license-files = ["LICENSE.txt"] authors = [ - {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"} + {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"}, ] dependencies = [ "fastmcp==2.12.2", diff --git a/src/oci-usage-mcp-server/pyproject.toml b/src/oci-usage-mcp-server/pyproject.toml index c32c09e..2d139a2 100644 --- a/src/oci-usage-mcp-server/pyproject.toml +++ b/src/oci-usage-mcp-server/pyproject.toml @@ -6,12 +6,12 @@ readme = "README.md" license = "UPL-1.0" license-files = ["LICENSE.txt"] authors = [ - {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"} + {name = "Oracle MCP", email = "237432095+oracle-mcp@users.noreply.github.com"}, ] requires-python = ">=3.13" dependencies = [ "fastmcp==2.12.2", - "oci==2.160.0" + "oci==2.160.0", ] classifiers = [ From 5ad9a3d962b23469636f74b0a70e6f4e93608f9f Mon Sep 17 00:00:00 2001 From: Richard Gebhardt Date: Sat, 11 Oct 2025 09:38:51 -0400 Subject: [PATCH 4/4] chore: correct license name Signed-off-by: Richard Gebhardt --- src/oci-api-mcp-server/pyproject.toml | 2 +- src/oci-compute-instance-agent-mcp-server/pyproject.toml | 2 +- src/oci-compute-mcp-server/pyproject.toml | 2 +- src/oci-identity-mcp-server/pyproject.toml | 2 +- src/oci-logging-mcp-server/pyproject.toml | 2 +- src/oci-migration-mcp-server/pyproject.toml | 2 +- src/oci-monitoring-mcp-server/pyproject.toml | 2 +- src/oci-network-load-balancer-mcp-server/pyproject.toml | 2 +- src/oci-networking-mcp-server/pyproject.toml | 2 +- src/oci-object-storage-mcp-server/pyproject.toml | 2 +- src/oci-pricing-mcp-server/pyproject.toml | 2 +- src/oci-registry-mcp-server/pyproject.toml | 2 +- src/oci-resource-search-mcp-server/pyproject.toml | 2 +- .../oracle/oci_usage_mcp_server/__init__.py | 2 +- src/oci-usage-mcp-server/pyproject.toml | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) diff --git a/src/oci-api-mcp-server/pyproject.toml b/src/oci-api-mcp-server/pyproject.toml index 696263d..47b9aa6 100644 --- a/src/oci-api-mcp-server/pyproject.toml +++ b/src/oci-api-mcp-server/pyproject.toml @@ -15,7 +15,7 @@ dependencies = [ ] classifiers = [ - "License :: OSI Approved :: Universal Permissive License", + "License :: OSI Approved :: Universal Permissive License (UPL)", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3.13", diff --git a/src/oci-compute-instance-agent-mcp-server/pyproject.toml b/src/oci-compute-instance-agent-mcp-server/pyproject.toml index a97ac85..2918fc0 100644 --- a/src/oci-compute-instance-agent-mcp-server/pyproject.toml +++ b/src/oci-compute-instance-agent-mcp-server/pyproject.toml @@ -15,7 +15,7 @@ dependencies = [ ] classifiers = [ - "License :: OSI Approved :: Universal Permissive License", + "License :: OSI Approved :: Universal Permissive License (UPL)", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3.13", diff --git a/src/oci-compute-mcp-server/pyproject.toml b/src/oci-compute-mcp-server/pyproject.toml index 73a9b4f..6b69225 100644 --- a/src/oci-compute-mcp-server/pyproject.toml +++ b/src/oci-compute-mcp-server/pyproject.toml @@ -15,7 +15,7 @@ dependencies = [ ] classifiers = [ - "License :: OSI Approved :: Universal Permissive License", + "License :: OSI Approved :: Universal Permissive License (UPL)", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3.13", diff --git a/src/oci-identity-mcp-server/pyproject.toml b/src/oci-identity-mcp-server/pyproject.toml index 31b78e6..a8ded4e 100644 --- a/src/oci-identity-mcp-server/pyproject.toml +++ b/src/oci-identity-mcp-server/pyproject.toml @@ -15,7 +15,7 @@ dependencies = [ ] classifiers = [ - "License :: OSI Approved :: Universal Permissive License", + "License :: OSI Approved :: Universal Permissive License (UPL)", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3.13", diff --git a/src/oci-logging-mcp-server/pyproject.toml b/src/oci-logging-mcp-server/pyproject.toml index bd889e7..76b5eba 100644 --- a/src/oci-logging-mcp-server/pyproject.toml +++ b/src/oci-logging-mcp-server/pyproject.toml @@ -13,7 +13,7 @@ dependencies = [ ] classifiers = [ - "License :: OSI Approved :: Universal Permissive License", + "License :: OSI Approved :: Universal Permissive License (UPL)", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3.13", diff --git a/src/oci-migration-mcp-server/pyproject.toml b/src/oci-migration-mcp-server/pyproject.toml index bef1d4f..4de598e 100644 --- a/src/oci-migration-mcp-server/pyproject.toml +++ b/src/oci-migration-mcp-server/pyproject.toml @@ -15,7 +15,7 @@ dependencies = [ ] classifiers = [ - "License :: OSI Approved :: Universal Permissive License", + "License :: OSI Approved :: Universal Permissive License (UPL)", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3.13", diff --git a/src/oci-monitoring-mcp-server/pyproject.toml b/src/oci-monitoring-mcp-server/pyproject.toml index 7ef904f..fe165c6 100644 --- a/src/oci-monitoring-mcp-server/pyproject.toml +++ b/src/oci-monitoring-mcp-server/pyproject.toml @@ -15,7 +15,7 @@ dependencies = [ ] classifiers = [ - "License :: OSI Approved :: Universal Permissive License", + "License :: OSI Approved :: Universal Permissive License (UPL)", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3.13", diff --git a/src/oci-network-load-balancer-mcp-server/pyproject.toml b/src/oci-network-load-balancer-mcp-server/pyproject.toml index bd2dfec..1237350 100644 --- a/src/oci-network-load-balancer-mcp-server/pyproject.toml +++ b/src/oci-network-load-balancer-mcp-server/pyproject.toml @@ -15,7 +15,7 @@ dependencies = [ ] classifiers = [ - "License :: OSI Approved :: Universal Permissive License", + "License :: OSI Approved :: Universal Permissive License (UPL)", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3.13", diff --git a/src/oci-networking-mcp-server/pyproject.toml b/src/oci-networking-mcp-server/pyproject.toml index 20270c7..d815ae3 100644 --- a/src/oci-networking-mcp-server/pyproject.toml +++ b/src/oci-networking-mcp-server/pyproject.toml @@ -15,7 +15,7 @@ dependencies = [ ] classifiers = [ - "License :: OSI Approved :: Universal Permissive License", + "License :: OSI Approved :: Universal Permissive License (UPL)", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3.13", diff --git a/src/oci-object-storage-mcp-server/pyproject.toml b/src/oci-object-storage-mcp-server/pyproject.toml index 2886ec6..8dc1360 100644 --- a/src/oci-object-storage-mcp-server/pyproject.toml +++ b/src/oci-object-storage-mcp-server/pyproject.toml @@ -13,7 +13,7 @@ dependencies = [ ] classifiers = [ - "License :: OSI Approved :: Universal Permissive License", + "License :: OSI Approved :: Universal Permissive License (UPL)", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3.13", diff --git a/src/oci-pricing-mcp-server/pyproject.toml b/src/oci-pricing-mcp-server/pyproject.toml index 6b6a72c..9c07c52 100644 --- a/src/oci-pricing-mcp-server/pyproject.toml +++ b/src/oci-pricing-mcp-server/pyproject.toml @@ -17,7 +17,7 @@ dependencies = [ ] classifiers = [ - "License :: OSI Approved :: Universal Permissive License", + "License :: OSI Approved :: Universal Permissive License (UPL)", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3.11", diff --git a/src/oci-registry-mcp-server/pyproject.toml b/src/oci-registry-mcp-server/pyproject.toml index 4d2f258..116a353 100644 --- a/src/oci-registry-mcp-server/pyproject.toml +++ b/src/oci-registry-mcp-server/pyproject.toml @@ -15,7 +15,7 @@ dependencies = [ ] classifiers = [ - "License :: OSI Approved :: Universal Permissive License", + "License :: OSI Approved :: Universal Permissive License (UPL)", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3.13", diff --git a/src/oci-resource-search-mcp-server/pyproject.toml b/src/oci-resource-search-mcp-server/pyproject.toml index ee909cf..fd0a03e 100644 --- a/src/oci-resource-search-mcp-server/pyproject.toml +++ b/src/oci-resource-search-mcp-server/pyproject.toml @@ -15,7 +15,7 @@ dependencies = [ ] classifiers = [ - "License :: OSI Approved :: Universal Permissive License", + "License :: OSI Approved :: Universal Permissive License (UPL)", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3.13", diff --git a/src/oci-usage-mcp-server/oracle/oci_usage_mcp_server/__init__.py b/src/oci-usage-mcp-server/oracle/oci_usage_mcp_server/__init__.py index 8fc6eba..3a99d23 100644 --- a/src/oci-usage-mcp-server/oracle/oci_usage_mcp_server/__init__.py +++ b/src/oci-usage-mcp-server/oracle/oci_usage_mcp_server/__init__.py @@ -4,5 +4,5 @@ https://oss.oracle.com/licenses/upl. """ -__project__ = "oracle.oci-Usage-mcp-server" +__project__ = "oracle.oci-usage-mcp-server" __version__ = "0.1.0" diff --git a/src/oci-usage-mcp-server/pyproject.toml b/src/oci-usage-mcp-server/pyproject.toml index 2d139a2..0dab746 100644 --- a/src/oci-usage-mcp-server/pyproject.toml +++ b/src/oci-usage-mcp-server/pyproject.toml @@ -15,7 +15,7 @@ dependencies = [ ] classifiers = [ - "License :: OSI Approved :: Universal Permissive License", + "License :: OSI Approved :: Universal Permissive License (UPL)", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3.13",