opencontextprotocol-sdk 0.2.1__tar.gz → 0.3.0__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.
- {opencontextprotocol_sdk-0.2.1 → opencontextprotocol_sdk-0.3.0}/PKG-INFO +7 -7
- {opencontextprotocol_sdk-0.2.1 → opencontextprotocol_sdk-0.3.0}/pyproject.toml +7 -7
- {opencontextprotocol_sdk-0.2.1 → opencontextprotocol_sdk-0.3.0}/.gitignore +0 -0
- {opencontextprotocol_sdk-0.2.1 → opencontextprotocol_sdk-0.3.0}/README.md +0 -0
- {opencontextprotocol_sdk-0.2.1 → opencontextprotocol_sdk-0.3.0}/opencontextprotocol_sdk/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: opencontextprotocol-sdk
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
4
4
|
Summary: Open Context Protocol — one-line install for server, client, and hybrid routing
|
|
5
5
|
Project-URL: Homepage, https://www.opencontextprotocol.ai
|
|
6
6
|
Project-URL: Repository, https://github.com/Rajesh1213/OCP
|
|
@@ -8,16 +8,16 @@ Project-URL: Documentation, https://www.opencontextprotocol.ai/routing
|
|
|
8
8
|
Project-URL: Bug Tracker, https://github.com/Rajesh1213/OCP/issues
|
|
9
9
|
License: Apache-2.0
|
|
10
10
|
Requires-Python: >=3.11
|
|
11
|
-
Requires-Dist: ocp-client>=0.
|
|
12
|
-
Requires-Dist: ocp-server>=0.
|
|
11
|
+
Requires-Dist: ocp-client>=0.3.0
|
|
12
|
+
Requires-Dist: ocp-server>=0.3.0
|
|
13
13
|
Provides-Extra: anthropic
|
|
14
|
-
Requires-Dist: ocp-router[anthropic]>=0.
|
|
14
|
+
Requires-Dist: ocp-router[anthropic]>=0.3.0; extra == 'anthropic'
|
|
15
15
|
Provides-Extra: full
|
|
16
|
-
Requires-Dist: ocp-router[anthropic,openai]>=0.
|
|
16
|
+
Requires-Dist: ocp-router[anthropic,openai]>=0.3.0; extra == 'full'
|
|
17
17
|
Provides-Extra: openai
|
|
18
|
-
Requires-Dist: ocp-router[openai]>=0.
|
|
18
|
+
Requires-Dist: ocp-router[openai]>=0.3.0; extra == 'openai'
|
|
19
19
|
Provides-Extra: router
|
|
20
|
-
Requires-Dist: ocp-router>=0.
|
|
20
|
+
Requires-Dist: ocp-router>=0.3.0; extra == 'router'
|
|
21
21
|
Description-Content-Type: text/markdown
|
|
22
22
|
|
|
23
23
|
# opencontextprotocol-sdk
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "opencontextprotocol-sdk"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.3.0"
|
|
4
4
|
description = "Open Context Protocol — one-line install for server, client, and hybrid routing"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = { text = "Apache-2.0" }
|
|
7
7
|
requires-python = ">=3.11"
|
|
8
8
|
dependencies = [
|
|
9
|
-
"ocp-server>=0.
|
|
10
|
-
"ocp-client>=0.
|
|
9
|
+
"ocp-server>=0.3.0",
|
|
10
|
+
"ocp-client>=0.3.0",
|
|
11
11
|
]
|
|
12
12
|
|
|
13
13
|
[project.optional-dependencies]
|
|
14
|
-
router = ["ocp-router>=0.
|
|
15
|
-
anthropic = ["ocp-router[anthropic]>=0.
|
|
16
|
-
openai = ["ocp-router[openai]>=0.
|
|
17
|
-
full = ["ocp-router[anthropic,openai]>=0.
|
|
14
|
+
router = ["ocp-router>=0.3.0"]
|
|
15
|
+
anthropic = ["ocp-router[anthropic]>=0.3.0"]
|
|
16
|
+
openai = ["ocp-router[openai]>=0.3.0"]
|
|
17
|
+
full = ["ocp-router[anthropic,openai]>=0.3.0"]
|
|
18
18
|
|
|
19
19
|
[project.urls]
|
|
20
20
|
Homepage = "https://www.opencontextprotocol.ai"
|
|
File without changes
|
|
File without changes
|
{opencontextprotocol_sdk-0.2.1 → opencontextprotocol_sdk-0.3.0}/opencontextprotocol_sdk/__init__.py
RENAMED
|
File without changes
|