-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (53 loc) · 2.17 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (53 loc) · 2.17 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
[project]
name = "bridgenode-llm"
version = "0.3.1"
description = "Agentic AI inference with x402 (HTTP 402) pay-per-request on Solana USDC — no API keys, no registration."
readme = "README.md"
requires-python = ">=3.11"
license = "MIT-0"
license-files = ["LICENSE"]
authors = [
{ name = "BridgeNode", email = "eli.BNx@proton.me" },
]
keywords = ["x402", "http-402", "agentic-commerce", "solana", "usdc", "ai", "llm", "mcp", "agents", "payment", "bridgenode", "openai-compatible", "chat", "inference", "micropayments", "pay-per-request", "no-api-key", "gasless", "deepseek", "groq", "mcp-server", "wallet"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Natural Language :: English",
]
dependencies = [
"x402[svm]>=2.20.0,<3",
"x402[extensions]>=2.20.0,<3", # client.py imports x402.extensions.sign_in_with_x — clean install fails without it
"solana>=0.36.0,<0.40", # solana 0.40.x removed solana.rpc.api — x402 imports it (broken combo)
"httpx>=0.28.1",
"python-dotenv>=1.2.2",
]
[project.optional-dependencies]
dev = [
"pytest>=9.1.1",
]
[project.urls]
Homepage = "https://bridgenode.cc"
Repository = "https://github.com/bridgenode-ai/bridgenode-sdk-python"
Documentation = "https://bridgenode.cc/llms.txt"
Changelog = "https://github.com/bridgenode-ai/bridgenode-sdk-python/releases"
Issues = "https://github.com/bridgenode-ai/bridgenode-sdk-python/issues"
Models = "https://bridgenode.cc/models"
[build-system]
requires = ["setuptools>=75"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["bridgenode_llm*"]
[tool.setuptools.package-data]
bridgenode_llm = ["py.typed"]