Complete the alpha-hardening Ralph task set, including tracker billing/accounting guards, validator fraud-audit primitives, wallet binding proof support, documentation runbooks, and updated tests. Verification: .venv/bin/python -m compileall -q packages tests; .venv/bin/python -m pytest -q --tb=short (313 passed, 3 skipped, 1 failed: tests/test_mining_cli.py::test_legacy_start_without_port_uses_next_available_port because meshnet-node pid 1263451 is already listening on port 7000).
25 lines
525 B
TOML
25 lines
525 B
TOML
[build-system]
|
|
requires = ["setuptools>=64"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "meshnet-tracker"
|
|
version = "0.1.0"
|
|
description = "Distributed Inference Network node registry and route selection"
|
|
requires-python = ">=3.10"
|
|
|
|
dependencies = [
|
|
"cryptography>=41",
|
|
"websockets>=13",
|
|
]
|
|
|
|
[project.scripts]
|
|
meshnet-tracker = "meshnet_tracker.cli:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["meshnet_tracker*"]
|
|
|
|
[tool.setuptools.package-data]
|
|
meshnet_tracker = ["*.json", "*.html"]
|