You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 7, 2026. It is now read-only.
fix: resolve Python packaging issues with hyphens in project slugs
- Fixed template directory structure to use underscores for Python modules
- Updated all import statements to use underscore-based module names
- Fixed class name generation to handle hyphens correctly
- Renamed src/{{cookiecutter.project_slug}}/ to src/{{cookiecutter.project_slug.replace('-', '_')}}/
- Updated test files to import from underscore-based modules
- Fixed pytest configuration to avoid template directory collection issues
- Ensured generated projects with hyphens can be installed and run correctly
This resolves entry point errors when generating projects with hyphens in the slug,
such as 'test-package-full-quality', making them installable and functional.
0 commit comments