Files
google-mcp/pyproject.toml

75 lines
2.3 KiB
TOML
Raw Normal View History

2025-05-17 16:41:25 -04:00
[build-system]
2025-06-14 14:03:05 -04:00
requires = [ "setuptools>=61.0", "wheel"]
2025-05-17 16:41:25 -04:00
build-backend = "setuptools.build_meta"
2025-06-14 13:02:03 -04:00
2025-04-27 12:34:22 -04:00
[project]
2025-06-14 13:11:00 -04:00
name = "workspace-mcp"
2025-08-19 14:59:27 -04:00
version = "1.4.2"
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-14 14:03:05 -04:00
readme = "README.md"
keywords = [ "mcp", "google", "workspace", "llm", "ai", "claude", "model", "context", "protocol", "server"]
requires-python = ">=3.10"
2025-06-16 15:41:34 -04:00
dependencies = [
"fastapi>=0.115.12",
2025-08-05 10:22:01 -04:00
"fastmcp==2.11.1",
2025-06-16 15:41:34 -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-06-16 15:56:51 -04:00
"pyjwt>=2.10.1",
2025-07-23 14:36:32 -04:00
"ruff>=0.12.4",
2025-06-16 15:41:34 -04:00
"tomlkit",
"aiohttp>=3.9.0",
"cachetools>=5.3.0",
"cryptography>=41.0.0",
2025-08-10 10:24:15 -04:00
"python-dotenv>=1.1.0",
2025-06-16 15:41:34 -04:00
]
2025-06-15 10:44:07 -04:00
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
2025-06-14 14:03:05 -04:00
"License :: OSI Approved :: MIT License",
2025-06-15 10:44:07 -04:00
"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",
2025-06-14 14:03:05 -04:00
"Topic :: Communications :: Chat",
"Topic :: Office/Business",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed"
]
2025-06-14 13:02:03 -04:00
[[project.authors]]
name = "Taylor Wilsdon"
email = "taylor@taylorwilsdon.com"
2025-05-31 20:05:18 -04:00
2025-06-14 14:03:05 -04:00
[project.license]
text = "MIT"
[project.urls]
Homepage = "https://workspacemcp.com"
Repository = "https://github.com/taylorwilsdon/google_workspace_mcp"
Documentation = "https://github.com/taylorwilsdon/google_workspace_mcp#readme"
Issues = "https://github.com/taylorwilsdon/google_workspace_mcp/issues"
Changelog = "https://github.com/taylorwilsdon/google_workspace_mcp/releases"
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
2025-08-05 19:11:34 -04:00
[project.optional-dependencies]
dev = [
"twine>=5.0.0",
]
[tool.setuptools]
2025-08-11 16:12:47 -04:00
packages = [ "auth", "gcalendar", "core", "gdocs", "gdocs.managers", "gdrive", "gmail", "gchat", "gsheets", "gforms", "gslides", "gtasks", "gsearch"]
2025-06-14 14:03:05 -04:00
py-modules = [ "main"]
2025-08-19 14:59:04 -04:00
[tool.setuptools.package-data]
core = ["tool_tiers.yaml"]