From 074580ac5d2418185709b17cffb2b86edc92ba37 Mon Sep 17 00:00:00 2001 From: Diamond Powell <32712461+diamondpowell@users.noreply.github.com> Date: Wed, 3 Jun 2026 13:15:59 -0400 Subject: [PATCH] Register crud module in pyproject.toml Add crud to packages list and telescope-crud entry point. Enables pip install telescope-benchmarks to include CRUD module. --- modules/python/pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/python/pyproject.toml b/modules/python/pyproject.toml index c03218cb95..8b7d2a4b56 100644 --- a/modules/python/pyproject.toml +++ b/modules/python/pyproject.toml @@ -28,7 +28,7 @@ Source = "https://github.com/Azure/telescope" Documentation = "https://github.com/Azure/telescope/tree/main/modules/python" [tool.setuptools] -packages = ["iperf3", "clients", "utils", "clusterloader2", "kwok", "gpu"] +packages = ["iperf3", "clients", "utils", "clusterloader2", "kwok", "gpu", "crud"] [tool.setuptools.dynamic] dependencies = {file = "requirements.txt"} @@ -38,3 +38,4 @@ telescope-iperf3 = "iperf3.iperf3_pod:main" telescope-cl2-autoscale = "clusterloader2.autoscale.autoscale:main" telescope-cl2-cri = "clusterloader2.cri.cri:main" telescope-kwok = "kwok.kwok:main" +telescope-crud = "crud.main:main"