Files
google-mcp/pyproject.toml

24 lines
1.4 KiB
TOML
Raw Normal View History

2025-05-17 16:41:25 -04:00
[build-system]
2025-06-14 13:02:03 -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-07 19:08:16 -04:00
license = "MIT"
2025-06-14 13:02:03 -04:00
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 13:02:03 -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", "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",]
[[project.authors]]
name = "Taylor Wilsdon"
email = "taylor@taylorwilsdon.com"
2025-05-31 20:05:18 -04:00
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 13:02:03 -04:00
packages = [ "auth", "gcalendar", "core", "gdocs", "gdrive", "gmail", "gchat", "gsheets", "gforms", "gslides",]
py-modules = [ "main",]