From e5d82b9de86203a5473966996029371e787843fb Mon Sep 17 00:00:00 2001 From: elijahbenizzy Date: Sun, 18 Feb 2024 09:50:33 -0800 Subject: [PATCH] Fixes pyproject.toml install target When we have extra folders there it fails, this specifies the right one. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1c7fa10c..74975b55 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -55,8 +55,8 @@ tracking-client = [ "pydantic" ] -[tool.poetry.packages] -py_modules = ["burr"] +[tool.setuptools.packages.find] +include = ["burr"] [project.urls] Homepage = "https://github.com/dagworks-inc/burr"