We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26b0458 commit bb9290eCopy full SHA for bb9290e
pyproject.toml
@@ -38,8 +38,15 @@ litellm = "1.60.4"
38
mcp = ">=1.8.0"
39
jinja2 = "3.1.5"
40
41
+# A list of optional dependencies, which are included in the
42
+# below `extras`.
43
+a2a-sdk = { version = ">=0.2.10", optional = true }
44
+starlette = { version = ">=0.47.0", optional = true }
45
+sse-starlette = { version = ">=2.3.6", optional = true }
46
+
47
+# Per https://python-poetry.org/docs/pyproject/#extras.
48
[tool.poetry.extras]
-a2a = ["a2a-sdk>=0.2.10", "starlette>=0.47.0", "sse-starlette>=2.3.6"]
49
+a2a = ["a2a-sdk", "starlette", "sse-starlette"]
50
51
[tool.pyright]
52
# https://github.com/microsoft/pyright/blob/main/docs/configuration.md
0 commit comments