pyproject.toml•832 B
[build-system]
requires = ["setuptools>=80.9.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "searxng-mcp"
version = "0.0.2"
description = "SearXNG Search Engine MCP Server for Agentic AI!"
readme = "README.md"
authors = [{ name = "Audel Rouhi", email = "knucklessg1@gmail.com" }]
license = { text = "MIT" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: Public Domain",
"Environment :: Console",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.10"
dependencies = [
"fastmcp>=2.11.3",
]
[project.scripts]
searxng-mcp = "searxng_mcp.searxng_mcp:searxng_mcp"
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools]
include-package-data = true
package-data = { "searxng_mcp" = ["searxng_mcp"] }