pyproject.tomlā¢714 B
[project]
name = "binance-mcp"
version = "0.1.0"
description = "Add your description here"
authors = [
{ name = "Batista Harahap", email = "batista@bango29.com" }
]
dependencies = [
"fastmcp>=2.11.3",
"pydantic>=2.11.7",
"pydantic-settings>=2.10.1",
"python-dotenv>=1.1.1",
"python-binance>=1.0.29",
"logfire>=4.3.3",
]
readme = "README.md"
requires-python = ">= 3.8"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"ruff>=0.12.9",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = [
"src/binance_mcp"
]
[project.scripts]
mcp = "binance_mcp.main:run"