pyproject.toml•730 B
[project]
name = "mcp-hydrolix"
version = "0.1.5"
description = "An MCP server for Hydrolix."
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE"]
requires-python = ">=3.13"
dependencies = [
"fastmcp>=2.0.0",
"python-dotenv>=1.0.1",
"clickhouse-connect>=0.8.16",
"pip-system-certs>=4.0",
]
[project.scripts]
mcp-hydrolix = "mcp_hydrolix.main:main"
[project.urls]
Home = "https://github.com/hydrolix/mcp-hydrolix"
[project.optional-dependencies]
dev = [
"ruff",
"pytest",
"pytest-asyncio",
"pre-commit"
]
[tool.hatch.build.targets.wheel]
packages = ["mcp_hydrolix"]
[tool.ruff]
line-length = 100
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"