pyproject.toml•625 B
[project]
name = "iceberg-mcp"
version = "0.1.8"
description = "An MCP server that interacts with Iceberg tables."
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE"]
requires-python = ">=3.11"
dependencies = [
"httpx>=0.28.1",
"ipython>=8.32.0",
"mcp[cli]>=1.3.0",
"pyarrow>=19.0.1",
"pyiceberg[glue,s3fs]>=0.9.0",
]
[project.scripts]
iceberg-mcp = "iceberg_mcp.iceberg_server:main"
[project.urls]
Home = "https://github.com/ryft-io/iceberg-mcp"
[tool.hatch.build.targets.wheel]
packages = ["iceberg_mcp"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"