pyproject.toml•1.11 kB
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[project]
name = "zapr-mcp"
version = "1.0.0"
description = "Zapr WhatsApp MCP Client for Model Context Protocol"
authors = [{name = "Zapr", email = "contact@zapr.link"}]
license = {text = "MIT"}
requires-python = ">=3.10"
dependencies = [
"mcp>=1.0.0",
"aiohttp>=3.8.0",
]
keywords = ["mcp", "whatsapp", "model-context-protocol", "ai", "messaging"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.scripts]
zapr-mcp = "zapr_mcp.server:main"
[project.urls]
Homepage = "https://zapr.link"
Repository = "https://github.com/zapr-link/zapr-mcp"
Documentation = "https://docs.zapr.link"