# --- BUILD SYSTEM ---
[build-system]
requires = ["uv_build>=0.8.22,<0.9.0"]
build-backend = "uv_build"
# --- PROJECT CONFIGURATION ---
[project]
name = "gmail-mcp"
version = "0.0.1"
description = "A Dedalus MCP server for read-only access to the Gmail API v1."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name = "Dedalus Labs", email = "support@dedalus.ai" },
]
maintainers = [
{ name = "Dedalus Labs", email = "support@dedalus.ai" },
]
keywords = ["ai", "mcp", "agents", "dedalus", "google", "gmail", "api"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed",
]
dependencies = [
"dedalus-mcp>=0.4.1",
"pydantic>=2.12.5",
"python-dotenv>=1.2.1",
"google-auth>=2.0.0",
"google-auth-oauthlib>=1.0.0",
"uvloop>=0.22.1; platform_system != 'Windows'",
]
[project.urls]
Homepage = "https://github.com/annyzhou/gmail-mcp"
Repository = "https://github.com/annyzhou/gmail-mcp"
Issues = "https://github.com/annyzhou/gmail-mcp/issues"
[tool.uv]
preview = true
package = false
default-groups = ["runtime"]
cache-dir = ".cache/uv"
compile-bytecode = true
link-mode = "hardlink"
environments = ["sys_platform == 'linux'", "sys_platform == 'darwin'"]
resolution = "highest"
prerelease = "if-necessary"
python-preference = "managed"
python-downloads = "automatic"
[dependency-groups]
runtime = [
"pydantic>=2.12.5",
"uvloop>=0.22.1; platform_system != 'Windows'",
]