[project]
name = "coinglass-mcp"
version = "0.1.0"
description = "MCP server for CoinGlass cryptocurrency derivatives analytics"
requires-python = ">=3.11"
dependencies = [
"fastmcp>=2.3.0",
"httpx>=0.25.0",
"pydantic>=2.0.0",
"tenacity>=8.2.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
]
[project.scripts]
coinglass-mcp = "coinglass_mcp.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/coinglass_mcp"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]