From 97c6a6c3bfaea369048684f6ece14eb67ae6b23c Mon Sep 17 00:00:00 2001 From: Elazar Gershuni Date: Sat, 3 Aug 2024 22:50:51 +0300 Subject: [PATCH] fix pyproject lookup Signed-off-by: Elazar Gershuni --- pyproject.toml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index cdcd808..71f0bbf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,8 +22,11 @@ dynamic = ["dependencies"] [tool.setuptools.dynamic] dependencies = {file = ["requirements.txt"]} -[tool.setuptools] -py-modules = [] +[tool.setuptools.packages.find] +where = ["."] # list of folders that contain the packages (["."] by default) +include = ["nakdimon"] +exclude = [] # exclude packages matching these glob patterns (empty by default) +namespaces = false [project.urls] "Homepage" = "https://github.com/elazarg/nakdimon"