From b7a44ef472dd2cf62148622cb74b9b6399deb98c Mon Sep 17 00:00:00 2001 From: Sidharth Mohanty Date: Wed, 13 Dec 2023 12:36:25 +0530 Subject: [PATCH] Fix multiple top level packages (#1006) --- pyproject.toml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b3320496..91c68462 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,10 +13,13 @@ exclude = [ "configs", "notebooks" ] +packages = [ + { include = "embedchain" }, +] [build-system] -requires = ["setuptools", "wheel"] -build-backend = "setuptools.build_meta" +build-backend = "poetry.core.masonry.api" +requires = ["poetry-core"] [tool.ruff] select = ["E", "F"]