pyproject.toml•1.16 kB
[project]
name = "duckduckgo-mcp-server"
version = "1.0.0"
description = "Model Context Protocol server for DuckDuckGo web search"
authors = [
{name = "Your Name", email = "your.email@example.com"}
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"apify>=2.0.0",
"mcp>=0.9.0",
"duckduckgo-search>=6.0.0",
"aiohttp>=3.9.0",
"beautifulsoup4>=4.12.0",
"lxml>=5.0.0",
"readability-lxml>=0.8.1",
"pydantic>=2.0.0",
"structlog>=24.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.1.0",
"black>=23.0.0",
"ruff>=0.1.0",
"mypy>=1.7.0",
]
[build-system]
requires = ["setuptools>=68.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 100
target-version = ['py310']
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]