Files
google-mcp/pyproject.toml

53 lines
2.0 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-06-14 13:18:05 -04:00
version = "1.0.0"
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"]
2025-05-15 11:09:53 -04:00
requires-python = ">=3.11"
2025-06-14 14:03:05 -04:00
dependencies = [ "fastapi>=0.115.12", "fastmcp>=2.3.3", "google-api-python-client>=2.168.0", "google-auth-httplib2>=0.2.0", "google-auth-oauthlib>=1.2.2", "httpx>=0.28.1", "tomlkit"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"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",
"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
[tool.setuptools]
2025-06-14 14:03:05 -04:00
packages = [ "auth", "gcalendar", "core", "gdocs", "gdrive", "gmail", "gchat", "gsheets", "gforms", "gslides"]
py-modules = [ "main"]