-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (43 loc) · 1.07 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (43 loc) · 1.07 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
[build-system]
requires = ["setuptools>=83.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "searchfetch"
version = "3.3.3"
description = "A maximum fault-tolerant, stealth-enabled MCP server for web searching and fetching."
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors =[
{ name = "Max" }
]
keywords =["mcp", "search", "fetch", "llm", "ai", "agent", "stealth"]
dependencies =[
"mcp>=2.0.0",
"cloakbrowser>=0.5.5",
"beautifulsoup4>=4.15.0",
"markdownify>=1.2.3",
]
[project.optional-dependencies]
dev = [
"pytest>=9.1.1",
"ruff>=0.16.1",
]
[project.urls]
Homepage = "https://github.com/maxylev/searchfetch"
Repository = "https://github.com/maxylev/searchfetch"
[project.scripts]
mcp-searchfetch = "server:main"
searchfetch = "server:main"
[tool.setuptools]
py-modules =["server"]
[tool.setuptools.data-files]
templates = ["templates/*.json"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "W", "UP"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"