pyproject.toml•607 B
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "lexlink-mcp"
version = "0.1.0"
description = "MCP server for Korean National Law Information Center (법제처 국가법령정보) API"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastmcp>=2.0.0",
"httpx>=0.27.0",
"smithery>=0.4.2",
"pydantic>=2.0.0",
]
[project.scripts]
dev = "smithery.cli.dev:main"
playground = "smithery.cli.playground:main"
[tool.hatch.build.targets.wheel]
only-include = ["main.py", "lexlink_client.py"]
[tool.smithery]
server = "main:create_server"