-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
31 lines (27 loc) · 985 Bytes
/
pyproject.toml
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
[build-system]
requires = [ "hatchling",]
build-backend = "hatchling.build"
[project]
name = "mcp-google-cse"
version = "0.1.4"
description = "An MCP server for searching a custom Google search engine."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [ "mcp>=1.2.0", "google-api-python-client>=2.159.0"]
license = "Unlicense"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
]
keywords = ["MCP", "Model Context Protocol", "Google Custom Search Engine", "Google CSE", "Web Browsing"]
[[project.authors]]
name = "Richard-Weiss"
email = "[email protected]"
[project.urls]
Homepage = "https://github.com/Richard-Weiss/mcp-google-cse"
Issues = "https://github.com/Richard-Weiss/mcp-google-cse/issues"
[project.scripts]
mcp-google-cse = "mcp_google_cse:main"