pyproject.toml•555 B
[project]
dependencies = ["linkup-sdk>=0.2.0", "mcp>=1.0.0"]
description = "A MCP server to search web with Linkup"
name = "mcp-search-linkup"
readme = "README.md"
requires-python = ">=3.11"
version = "0.1.5"
[dependency-groups]
dev = ["ruff>=0.8.2"]
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project.scripts]
mcp-search-linkup = "mcp_search_linkup:main"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # pyflakes
"I", # isort
"S", # flake8-bandit
]