[project]
name = "point-topic-mcp"
<<<<<<< Updated upstream
version = "0.1.88"
description = "UK broadband data analysis MCP server"
=======
version = "0.1.94"
description = "UK broadband data analysis MCP server with Snowflake integration"
>>>>>>> Stashed changes
readme = "README.md"
requires-python = ">=3.12"
authors = [
    {name = "Peter Donaghey", email = "peter.donaghey@point-topic.com"}
]
license = {text = "MIT"}
keywords = ["mcp", "snowflake", "broadband", "data-analysis"]
classifiers = [
    "Development Status :: 3 - Alpha",
    "Intended Audience :: Developers",
    "License :: OSI Approved :: MIT License",
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3.12",
]
dependencies = [
    "boto3>=1.28.0",
    "certifi>=2024.0.0",
    "fastmcp>=2.14.0",
    "httpx>=0.28.1",
    "pymongo>=4.10.0",
    "mcp>=1.26.0",
    "fastapi>=0.115.0",
    "uvicorn>=0.34.0",
    "pyjwt>=2.10.0",
    "cryptography>=44.0.0",
    "clickhouse-connect>=0.8.0",
    "snowflake-connector-python>=3.17.3",
    "python-dotenv>=1.0.0",
    "pyyaml>=6.0.0",
    "PyGithub>=2.1.1",
]

[project.optional-dependencies]
snowflake = ["pyarrow>=12.0.0", "pandas>=1.5.0"]

[project.scripts]
point-topic-mcp = "point_topic_mcp.server_local:main"
point-topic-mcp-http = "point_topic_mcp.server_http:main"
point-topic-mcp-install-mongosh = "point_topic_mcp.install_mongosh:main"

[project.urls]
Homepage = "https://github.com/point-topic/point-topic-mcp"
Repository = "https://github.com/point-topic/point-topic-mcp"

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.hatch.build.targets.wheel]
packages = ["src/point_topic_mcp"]
