-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "algovoi-mcp"
version = "1.3.0"
description = "MCP server for AlgoVoi — create crypto payment links, verify payments, generate MPP / x402 / AP2 / A2A challenges, and manage Tier 2 standing-authority subscriptions on 7 chains, from any MCP client (Claude Desktop, Claude Code, Cursor, Windsurf). 21 tools across one-shot payments, agent-protocol challenges, A2A messaging, and recurring billing (Algorand, VOI, Base, Tempo, Solana, Hedera, Stellar)."
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "AlgoVoi" }
]
keywords = ["mcp", "model-context-protocol", "algovoi", "payments", "crypto", "usdc", "algorand", "voi", "hedera", "stellar"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
dependencies = [
"mcp>=1.26.0",
"pydantic>=2.0",
]
[project.optional-dependencies]
test = [
"pytest>=7.0",
"pytest-asyncio>=0.21",
]
[project.scripts]
algovoi-mcp = "algovoi_mcp.__main__:main"
[project.urls]
Homepage = "https://github.com/chopmob-cloud/AlgoVoi-Platform-Adapters"
Repository = "https://github.com/chopmob-cloud/AlgoVoi-Platform-Adapters"
[tool.setuptools.packages.find]
include = ["algovoi_mcp*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"