From 7acce1da02b069055c34be52da4f8b737bd78adc Mon Sep 17 00:00:00 2001 From: Madava Date: Thu, 27 Nov 2025 11:48:03 +0100 Subject: [PATCH] Include operations package in backend build --- app/backend/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/backend/pyproject.toml b/app/backend/pyproject.toml index f9b0080..7ca3002 100644 --- a/app/backend/pyproject.toml +++ b/app/backend/pyproject.toml @@ -35,7 +35,7 @@ testpaths = ["tests"] py-modules = ["main"] [tool.setuptools.packages.find] -include = ["api*", "core*", "features*"] +include = ["api*", "core*", "features*", "operations*"] [build-system] requires = ["setuptools>=68", "wheel"]