pyproject.toml•1.52 kB
[project]
name = "hyperliquid-mcp-server"
version = "1.0.0"
description = "MCP server for Hyperliquid trading API integration"
authors = [
{name = "Your Name", email = "your.email@example.com"}
]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.10"
dependencies = [
"mcp>=1.0.0",
"httpx>=0.25.0",
"eth-account>=0.9.0",
"web3>=6.0.0",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
"eth-hash[pycryptodome]>=0.5.0",
"fastapi>=0.104.0",
"uvicorn>=0.24.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"isort>=5.0.0",
"mypy>=1.0.0",
"ruff>=0.1.0",
]
[project.scripts]
hyperliquid-mcp-server = "hyperliquid_mcp_server.main:main"
hyperliquid-mcp-http = "hyperliquid_mcp_server.http_server:main"
hyperliquid-mcp-jsonrpc = "hyperliquid_mcp_server.mcp_http_server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"isort>=5.0.0",
"mypy>=1.0.0",
"ruff>=0.1.0",
]
[tool.black]
line-length = 88
target-version = ['py310']
[tool.isort]
profile = "black"
line_length = 88
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.ruff]
select = ["E", "F", "UP", "B", "SIM", "I"]
ignore = []
line-length = 88
target-version = "py310"