-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (71 loc) · 1.92 KB
/
pyproject.toml
File metadata and controls
78 lines (71 loc) · 1.92 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[build-system]
requires = ["hatchling>=1.18"]
build-backend = "hatchling.build"
[project]
name = "polymarket-mcp-pro"
version = "0.1.1"
description = "Live Polymarket prediction-market data, exposed as MCP tools for Claude, Cursor, and Cline."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name = "LuciferForge", email = "LuciferForge@proton.me" },
]
keywords = [
"mcp",
"model-context-protocol",
"polymarket",
"prediction-markets",
"claude",
"cursor",
"cline",
"fastmcp",
"trading",
"agents",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Office/Business :: Financial",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"fastmcp>=2.0.0,<3.0.0",
"httpx>=0.27.0,<1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4",
"pytest-asyncio>=0.23",
"respx>=0.21",
]
[project.urls]
Homepage = "https://github.com/LuciferForge/polymarket-mcp"
Documentation = "https://github.com/LuciferForge/polymarket-mcp#readme"
Issues = "https://github.com/LuciferForge/polymarket-mcp/issues"
"API" = "https://api.protodex.io"
"Dataset" = "https://github.com/LuciferForge/polymarket-historical-data"
"Trading bot" = "https://github.com/LuciferForge/polymarket-crash-bot"
[project.scripts]
polymarket-mcp = "polymarket_mcp.server:main"
[tool.hatch.build.targets.wheel]
packages = ["polymarket_mcp"]
[tool.hatch.build.targets.sdist]
include = [
"polymarket_mcp",
"examples",
"tests",
"README.md",
"LICENSE",
"pyproject.toml",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"