feat: 完成节点协议与 SDK

This commit is contained in:
cat-shark
2026-08-08 21:04:18 +08:00
commit 906553d2d0
9 changed files with 980 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
[project]
name = "wov-sdk"
version = "0.1.0"
description = "WOV node protocol and SDK"
requires-python = ">=3.11"
[dependency-groups]
dev = ["pytest", "pytest-cov"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--cov=wov_sdk --cov-report=term-missing --cov-fail-under=100"
[tool.uv]
package = true
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]