pyproject.tomlā¢1.72 kB
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "searxng-mcp-server"
version = "0.1.0"
description = "MCP server for SearXNG search engine integration"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "Martin Chen", email = "martinchen448@gmail.com" }
]
license = { text = "MIT" }
keywords = ["mcp", "searxng", "search", "api"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"mcp>=0.9.0",
"httpx>=0.27.0",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"black>=24.0.0",
"ruff>=0.3.0",
"mypy>=1.8.0",
]
[project.urls]
Homepage = "https://github.com/martinchen448/searxng-mcp-server"
Repository = "https://github.com/martinchen448/searxng-mcp-server"
Issues = "https://github.com/martinchen448/searxng-mcp-server/issues"
[project.scripts]
searxng-mcp-server = "searxng_mcp_server.server:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 100
target-version = ["py310", "py311", "py312"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
ignore = []
[tool.mypy]
python_version = "3.10"
strict = true
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]