From 84b2e8de7c23331876e88db7588320dbfc133516 Mon Sep 17 00:00:00 2001 From: james-encord <133006388+james-encord@users.noreply.github.com> Date: Tue, 12 Sep 2023 13:11:18 +0100 Subject: [PATCH] fix: only include dist folder in frontend (rest of files are not needed for a working build). (#643) Only include dist in frontend. --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 9e06e7faa..5b898d544 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,6 +35,8 @@ repository = "https://github.com/encord-team/encord-active" include = ['.env', "src/encord_active/frontend/dist/**/*"] +exclude = ['src/encord_active/frontend/**/*'] + packages = [{ include = "encord_active", from = "src" }] license = "Apache-2.0"