From 00d6784a85604eb82667f1307143e4bea7af716e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gr=C3=A9goire=20KUBLER?= <gregoire.kubler@proton.me>
Date: Fri, 5 Jul 2024 16:44:49 +0200
Subject: [PATCH] fix : aidge_core not found

---
 pyproject.toml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pyproject.toml b/pyproject.toml
index 1fdcf59ef..84364bf7f 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -32,7 +32,7 @@ build-backend = "setuptools.build_meta"
 # SETUPTOOLS
 [tool.setuptools]
 [tool.setuptools.packages.find]
-where = ["aidge_core"]  # list of folders that contain the packages (["."] by default)
+where = ["."]  # list of folders that contain the packages (["."] by default)
 include = ["aidge_core*" , "aidge_core.aidge_export_aidge*", "aidge_core.aidge_export_aidge.utils"]  # package names should match these glob patterns (["*"] by default)
 exclude = ["aidge_core.unit_tests*"]  # exclude packages matching these glob patterns (empty by default)
 
-- 
GitLab