pyproject.toml•769 B
[project]
name = "mcp_snowflake_server_readonly_sysprompt" # wheel / PyPI name
version = "0.4.6"
description = "A simple Snowflake MCP server"
readme = "README.md"
requires-python = ">=3.10,<3.13"
dependencies = [
"mcp>=1.0.0",
"snowflake-connector-python[pandas]>=3.12.0,<3.14.0",
"pandas>=2.2.3",
"python-dotenv>=1.0.1",
"sqlparse>=0.5.3",
"snowflake-snowpark-python>=1.26.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = ["pyright>=1.1.389"]
[project.scripts]
# what users type → where it points
mcp_snowflake_server_readonly_sysprompt = "mcp_snowflake_server:main"
[tool.hatch.build]
sources = ["src"]
[tool.hatch.build.targets.wheel]
packages = ["mcp_snowflake_server"]