docs: organize Python helpers and refresh README (#334)

* docs: organize Python helpers and refresh README

* docs: add README status badges

* test: centralize Python helper test imports

* docs: add short provenance disclaimer
This commit is contained in:
Vasanth T
2026-04-04 18:54:36 +05:30
committed by GitHub
parent 462a985d7e
commit 80a2f1414c
10 changed files with 76 additions and 90 deletions

5
python/tests/conftest.py Normal file
View File

@@ -0,0 +1,5 @@
from pathlib import Path
import sys
# Make the sibling `python/` helper modules importable from this test package.
sys.path.insert(0, str(Path(__file__).resolve().parents[1]))