kya-validator 0.2.3

Rust core KYA (Know Your Agent) validator with Python bindings, TEE support, and blockchain integration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# apps/demo_backend/Makefile
PYTHON ?= $(shell (pyenv which python >/dev/null 2>&1 && pyenv which python) || which python3)

.PHONY: install run test

install:
	# Install parent kya-validator package (using uv/maturin) from project root
	cd ../.. && uv tool run maturin develop
	# Install demo backend dependencies using uv
	uv sync --extra dev

run:
	uv run python -m uvicorn app.main:app --host 0.0.0.0 --port 8003 --reload

test:
	uv run python -m pytest