-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 856 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (34 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[project]
name = "gmail-tools"
version = "0.1.0"
description = "MCP server for Gmail — send, read, and manage emails"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"mcp>=1.1.2",
"google-api-python-client>=2.156.0",
"google-auth-httplib2>=0.2.0",
"google-auth-oauthlib>=1.2.1",
"cryptography>=42.0.0",
]
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"pytest-asyncio>=0.24",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
gmail-tools = "gmail_tools:main"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
markers = ["integration: live Gmail API tests (require credentials)"]
addopts = "-m 'not integration'"
[tool.coverage.run]
source = ["src/gmail_tools"]
[tool.coverage.report]
show_missing = true
fail_under = 80