-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 862 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 862 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
[project]
name = "serper-mcp-server"
dynamic = ["version"]
description = "A MCP server for Serper"
keywords = ["serper", "mcp", "server", "google", "search"]
authors = [
{ name="Gary Meng", email="guozao.m@gmail.com" },
]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"aiohttp>=3.11.16",
"certifi>=2025.1.31",
"mcp[cli]>=1.6.0",
"pydantic>=2.11.2",
"python-dotenv>=1.1.0",
]
[project.urls]
"Homepage" = "https://github.com/garylab/serper-mcp-server"
"Bug Tracker" = "https://github.com/garylab/serper-mcp-server/issues"
"Author Blog" = "https://garymeng.com"
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "no-local-version"
[project.scripts]
serper-mcp-server = "serper_mcp_server:main"