[project]
name = "colacloud-mcp"
version = "0.1.0"
description = "MCP server for COLA Cloud - access US alcohol label data from AI assistants"
readme = "README.md"
license = "MIT"
authors = [{ name = "COLA Cloud", email = "support@colacloud.us" }]
keywords = ["mcp", "cola", "alcohol", "ttb", "labels", "ai"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.10"
dependencies = [
"fastmcp>=2.0.0,<3",
"httpx>=0.27.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"respx>=0.21.0",
"ruff>=0.4.0",
]
[project.scripts]
colacloud-mcp = "colacloud_mcp:main"
[project.urls]
Homepage = "https://colacloud.us"
Documentation = "https://app.colacloud.us/docs/api"
Repository = "https://github.com/cola-cloud-us/colacloud-mcp"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/colacloud_mcp"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]