pyproject.toml•1.48 kB
[project]
name = "duckduckgo-mcp-server"
version = "1.0.0"
description = "DuckDuckGoの検索機能を提供するModel Context Protocol (MCP) サーバー"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "DuckDuckGo MCP Server Team" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"mcp>=1.0.0",
"httpx>=0.25.0",
"pydantic>=2.0.0",
"asyncio-throttle>=1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"isort>=5.12.0",
"mypy>=1.0.0",
]
[project.scripts]
duckduckgo-mcp-server = "server:cli_main"
test-search = "test_search:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["."]
exclude = [
"/.git",
"/.gitignore",
"/logs",
"/venv",
"/.venv",
"/__pycache__",
"*.pyc",
"*.pyo",
"*.pyd",
".pytest_cache",
".mypy_cache",
]
[tool.black]
line-length = 88
target-version = ["py313"]
[tool.isort]
profile = "black"
line_length = 88
[tool.mypy]
python_version = "3.13"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true