[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mcp-deepseek"
version = "1.0.0"
description = "MCP client for interacting with MCP servers"
requires-python = ">=3.8"
dependencies = [
"httpx",
"click"
]
[project.scripts]
mcp-deepseek = "mcp_deepseek_client.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["mcp_deepseek_client"]