Files
google-mcp/pyproject.toml

54 lines
1.5 KiB
TOML
Raw Normal View History

2025-05-17 16:41:25 -04:00
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
2025-04-27 12:34:22 -04:00
[project]
2025-06-14 13:11:00 -04:00
name = "workspace-mcp"
2025-06-14 13:05:59 -04:00
version = "0.1.1"
2025-05-31 19:58:39 -04:00
description = "Comprehensive, highly performant Google Workspace Streamable HTTP & SSE MCP Server for Calendar, Gmail, Docs, Sheets, Slides & Drive"
2025-06-07 19:08:16 -04:00
license = "MIT"
2025-05-31 20:07:40 -04:00
authors = [{ name = "Taylor Wilsdon", email = "taylor@taylorwilsdon.com" }]
keywords = [
"mcp",
"google",
"workspace",
"llm",
"ai",
"claude",
"model",
"context",
"protocol",
"server",
2025-05-31 20:05:18 -04:00
]
2025-05-15 11:09:53 -04:00
requires-python = ">=3.11"
2025-04-27 12:34:22 -04:00
dependencies = [
"fastapi>=0.115.12",
2025-05-11 10:07:37 -04:00
"fastmcp>=2.3.3",
2025-04-27 12:34:22 -04:00
"google-api-python-client>=2.168.0",
"google-auth-httplib2>=0.2.0",
"google-auth-oauthlib>=1.2.2",
"httpx>=0.28.1",
]
2025-05-31 20:05:18 -04:00
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Typing :: Typed",
]
2025-06-10 08:03:56 -07:00
[project.scripts]
2025-06-14 13:13:17 -04:00
workspace-mcp = "main:main"
2025-06-10 08:03:56 -07:00
[tool.setuptools]
2025-06-11 14:50:27 -04:00
packages = ["auth", "gcalendar", "core", "gdocs", "gdrive", "gmail", "gchat", "gsheets", "gforms", "gslides"]
2025-06-10 08:03:56 -07:00
py-modules = ["main"]