-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (61 loc) · 2.29 KB
/
pyproject.toml
File metadata and controls
67 lines (61 loc) · 2.29 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
# Sub-plan 21.3 row C-2: Python SDK scaffold (pyproject.toml).
#
# Distribution: pypi as `blockchain0x` (sibling `blockchain0x-x402` for
# the x402 client + server adapters lands in C-7). Trusted Publisher
# OIDC setup is owner work (matches the 21.2 npm pattern).
#
# Mirror layout: source-of-truth lives here in the monorepo at
# packages/sdk-python/; a public mirror repo Tosh-Labs/blockchain0x-
# python receives `packages/sdk-python/**` on each merge to dev (the
# G-1 workflow lands in Phase G).
[build-system]
requires = ["hatchling>=1.18"]
build-backend = "hatchling.build"
[project]
name = "blockchain0x"
version = "0.0.1a0"
description = "Official Python SDK for the Blockchain0x non-custodial AI-agent wallet platform"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "Apache-2.0" }
authors = [
{ name = "Blockchain0x", email = "support@blockchain0x.com" }
]
keywords = ["blockchain0x", "stablecoin", "agent", "wallet", "usdc", "x402"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
# httpx covers sync + async transport with a single API surface,
# connection pooling, and HTTP/2. The Node SDK uses fetch under
# AbortController; httpx is the closest peer in the Python world.
"httpx>=0.27.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4",
"pytest-asyncio>=0.23",
"respx>=0.20",
]
[project.urls]
Homepage = "https://blockchain0x.com"
Documentation = "https://docs.blockchain0x.com"
Repository = "https://github.com/Tosh-Labs/blockchain0x-python"
Source = "https://github.com/Tosh-Labs/blockchain0x-app/tree/dev/packages/sdk-python"
Changelog = "https://github.com/Tosh-Labs/blockchain0x-python/blob/main/CHANGELOG.md"
"Issue Tracker" = "https://github.com/Tosh-Labs/blockchain0x-app/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/blockchain0x"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
asyncio_mode = "auto"