From 7aeecc1e15bf15b9238a4f7a74073f3decc393a4 Mon Sep 17 00:00:00 2001 From: ARIA Date: Tue, 28 Jul 2026 12:07:38 +0200 Subject: [PATCH] Fix: Add setuptools package discovery config The src package was not being installed, causing ModuleNotFoundError when running ghrel command from outside the project directory. --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 251f94b..d7d7151 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,6 +12,9 @@ dependencies = [ [project.scripts] ghrel = "src.cli:main" +[tool.setuptools.packages.find] +include = ["src*"] + [project.optional-dependencies] test = [ "pytest",