-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (81 loc) · 1.87 KB
/
Copy pathpyproject.toml
File metadata and controls
86 lines (81 loc) · 1.87 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
79
80
81
82
83
84
85
86
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rpcnode"
version = "0.1.0"
description = "Official Python SDK for the RpcNode Public API: dedicated fullnode RPC endpoints (Ethereum, Solana, Bitcoin, Tron, BNB Chain, Polygon, Arbitrum, Optimism, Base, and more), HMAC-signed merchant HTTP, address watch webhooks, and crypto payments."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
dependencies = []
keywords = [
"rpcnode",
"rpc",
"json-rpc",
"fullnode",
"full-node",
"archive-node",
"blockchain-node",
"crypto-node",
"web3",
"blockchain",
"cryptocurrency",
"rpc-endpoint",
"dedicated-node",
"ethereum",
"geth",
"erigon",
"solana",
"bitcoin",
"tron",
"bsc",
"bnb-chain",
"polygon",
"matic",
"arbitrum",
"optimism",
"base",
"hyperliquid",
"xrpl",
"xrp",
"dogecoin",
"cardano",
"sui",
"stellar",
"hedera",
"litecoin",
"dash",
"bitcoin-cash",
"aptos",
"polkadot",
"ethereum-classic",
"shibarium",
"hmac",
"merchant-api",
"payments",
"address-watch",
"webhook",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Homepage = "https://api.rpcnode.dev"
Repository = "https://github.com/rpcnode/api-sdk-python"
Issues = "https://github.com/rpcnode/api-sdk-python/issues"
Documentation = "https://api.rpcnode.dev"
[project.optional-dependencies]
dev = ["pytest>=8.0"]
[tool.setuptools.packages.find]
include = ["rpcnode*"]
[tool.pytest.ini_options]
testpaths = ["tests"]