-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 922 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 922 Bytes
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
[project]
name = "zero-network"
version = "0.2.2"
description = "Python SDK for the Zero Network — stablecoin microtransactions for AI agents"
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
authors = [{name = "Zero Network", email = "dev@zzero.net"}]
keywords = ["zero", "micropayments", "stablecoin", "ai-agents", "x402"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"httpx>=0.24.0",
"pynacl>=1.5.0",
]
[project.optional-dependencies]
x402 = ["starlette>=0.20.0"]
[project.urls]
Homepage = "https://zzero.net"
Documentation = "https://docs.zzero.net"
Repository = "https://github.com/Zzero-net/zero-sdk-python"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"