searxng-mcp/pyproject.toml

24 lines
526 B
TOML
Raw Normal View History

2026-04-20 11:42:25 +02:00
[project]
name = "searxng-mcp"
version = "0.1.0"
description = "MCP server exposing SearxNG web search as a tool"
readme = "README.md"
authors = [
{ name = "Hans Aschauer", email = "hans.git@ch23.de" }
]
requires-python = ">=3.14"
dependencies = [
"fastmcp>=3.2.4",
"httpx>=0.28.1",
"pydantic-ai>=0.3.0",
2026-04-20 11:42:25 +02:00
"pydantic-settings>=2.13.1",
"trafilatura>=2.0.0",
]
[project.scripts]
searxng-mcp = "searxng_mcp.__main__:main"
[build-system]
requires = ["uv_build>=0.10.8,<0.11.0"]
build-backend = "uv_build"