-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (45 loc) · 1.44 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (45 loc) · 1.44 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "smart402"
version = "0.4.0"
description = "Deterministic risk engine for AI agent payments via x402"
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.10"
authors = [
{name = "Roberto Moreno", email = "rob@smart402.com"},
]
keywords = ["x402", "ai-agents", "payments", "risk", "stablecoin", "blockchain"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"httpx>=0.25.0",
"pydantic>=2.0",
]
[project.optional-dependencies]
x402 = ["x402[evm,httpx]>=2.3.0,<3"]
all = ["x402[evm,httpx]>=2.3.0,<3"]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-httpx>=0.30",
]
[project.urls]
Homepage = "https://github.com/Falinkaz/smart402-python"
Documentation = "https://github.com/Falinkaz/smart402-python/blob/main/API.md"
Repository = "https://github.com/Falinkaz/smart402-python"
Issues = "https://github.com/Falinkaz/smart402-python/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["smart402*"]