From 4e47967c304bf2123b302d0131c1aa077f3c1a8c Mon Sep 17 00:00:00 2001 From: Anas Ur Rehman <145249950+iamKhan79690@users.noreply.github.com> Date: Thu, 1 Jan 2026 21:03:50 +0500 Subject: [PATCH] fix: Update setuptools configuration to include adaptors module (#227) Fixes #226 Changed from manual package listing to automatic discovery: - Replaced explicit packages list with [tool.setuptools.packages.find] - Set package-dir = {"" = "src"} for src layout - Added include = ["skill_seekers*"] to catch all submodules - Set namespaces = false for proper package structure This ensures the adaptors/ directory and all other submodules are properly included when building the PyPI package. The manual packages list was missing newly added modules and didn't auto-discover the src/skill_seekers/cli/adaptors directory.