Update tosa_verif_run_ref

Rename to tosa_verif_run_tests to match build_tests
Improve output and system under test support
Improve xunit support
Add results checker
Add utilities json2numpy and json2fbbin
Add set of python tests
Update README.md

Signed-off-by: Jeremy Johnson <jeremy.johnson@arm.com>
Change-Id: Ia09f8e6fd126579b3ba1c1cda95c1326802417ca
diff --git a/setup.cfg b/setup.cfg
index 5b7ffc4..f9e5331 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -25,16 +25,28 @@
 packages =
     runner
     generator
+    checker
     xunit
+    json2fbbin
+    json2numpy
     tosa
     serializer
 package_dir =
     = verif
     xunit = scripts/xunit
+    json2fbbin = scripts/json2fbbin
+    json2numpy = scripts/json2numpy
     tosa = thirdparty/serialization_lib/python/tosa
     serializer = thirdparty/serialization_lib/python/serializer
 
 [options.entry_points]
 console_scripts =
-    tosa_verif_run_ref = runner.tosa_verif_run_ref:main
+    tosa_verif_run_ref = runner.tosa_verif_run_tests:main
+    tosa_verif_run_tests = runner.tosa_verif_run_tests:main
     tosa_verif_build_tests = generator.tosa_verif_build_tests:main
+    json2numpy = json2numpy.json2numpy:main
+    json2fbbin = json2fbbin.json2fbbin:main
+    tosa_verif_result_check = checker.tosa_result_checker:main
+
+[tool:pytest]
+testpaths=verif/tests