-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 829 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (32 loc) · 829 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
[project]
name = "agent-web-search"
version = "0.2.1"
description = "A free, unlimited, stable web-search MCP tool for coding agents"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
dependencies = [
"mcp>=1.0",
"ddgs>=9.0",
"readability-lxml>=0.8",
"httpx>=0.27",
"anyio>=4.0",
]
[project.scripts]
agent-web-search = "agent_web_search.__main__:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/agent_web_search"]
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
markers = [
"integration: tests that hit the real network (skipped in CI by default; run locally with a bare `python -m pytest`)",
]