git-ai-commit icon indicating copy to clipboard operation
git-ai-commit copied to clipboard

🐞 fix(setup): add setuptools dependency to resolve pkg_resources import error

Open kt-devoss opened this issue 3 weeks ago • 0 comments

Description

  • Added setuptools to install_requires in setup.cfg
  • Fixes ModuleNotFoundError: No module named 'pkg_resources' on Python 3.12+
  • This error occurred because setuptools was not listed as a dependency

Note: This commit provides a temporary fix by ensuring setuptools is installed. However, pkg_resources is deprecated and will be removed after 2025-11-30. Future versions should replace pkg_resources with importlib.metadata.

Test Plan


fixes: #82

kt-devoss avatar Nov 12 '25 14:11 kt-devoss