-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 1.42 KB
/
Copy pathpyproject.toml
File metadata and controls
37 lines (33 loc) · 1.42 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "madeonsol-x402"
version = "1.30.0"
description = "x402 client SDK for MadeOnSol Solana KOL intelligence API. Works with LangChain, CrewAI, and standalone."
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
keywords = ["solana", "x402", "kol", "kol-tracker", "trading", "api", "langchain", "crewai", "ai-agent", "memecoin", "memecoin-tracker", "alpha", "alpha-bot", "pumpfun", "pumpfun-sniper", "deployer-hunter", "smart-money", "copy-trading", "solana-trading-bot", "madeonsol"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
# x402 is pinned to the 2.x line: client.py imports `x402.x402Client`,
# `x402.mechanisms.svm` and `x402.http.clients`, which are the 2.x module
# layout and do not exist on 0.x/1.x — the old `>=0.1` floor admitted versions
# that can never satisfy those imports. Verified against x402 2.22.0 (2026-09-10).
dependencies = [
"httpx>=0.27,<1",
"x402[svm,httpx]>=2.0,<3",
]
[project.optional-dependencies]
stream = ["websockets>=12"]
langchain = ["langchain-core>=0.3"]
crewai = ["crewai>=0.80"]
dev = ["pytest>=7.0"]
[project.urls]
Homepage = "https://madeonsol.com/solana-api"
Repository = "https://github.com/madeonsol/madeonsol-python"