fix valkey optional dep

This commit is contained in:
Taylor Wilsdon
2025-12-28 12:52:40 -08:00
parent 3eb81e16b0
commit 517d0876a1
5 changed files with 65 additions and 7 deletions

View File

@@ -16,7 +16,7 @@ dependencies = [
"google-auth-httplib2>=0.2.0",
"google-auth-oauthlib>=1.2.2",
"httpx>=0.28.1",
"py-key-value-aio[valkey]>=0.3.0",
"py-key-value-aio>=0.3.0",
"pyjwt>=2.10.1",
"python-dotenv>=1.1.0",
"pyyaml>=6.0.2",
@@ -60,6 +60,9 @@ Changelog = "https://github.com/taylorwilsdon/google_workspace_mcp/releases"
workspace-mcp = "main:main"
[project.optional-dependencies]
valkey = [
"py-key-value-aio[valkey]>=0.3.0",
]
test = [
"pytest>=8.3.0",
"pytest-asyncio>=0.23.0",
@@ -79,6 +82,9 @@ dev = [
]
[dependency-groups]
valkey = [
"py-key-value-aio[valkey]>=0.3.0",
]
test = [
"pytest>=8.3.0",
"pytest-asyncio>=0.23.0",