Project lacks proper Python package structure #17
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Description
The project is organized as loose directories with hyphens in names, making it impossible to use as a Python package:
Problems
clean-text-to-keywords,text-cleaner) are invalid Python package names__init__.pyfiles anywhereprompt_to_card_pipeline.pydynamically loads modules from file paths instead of importing themSuggested structure
This would allow direct imports, proper testing, and standard packaging.