refactor: reorganize src/ for maintainability#64
Merged
Conversation
…e/, utils/ (#57) - Move classify_extract.py and extract-from-txt.py into src/pipeline/ - Rename extract-from-txt.py to extract_from_txt.py (PEP 8) - Reorganize src/ subdirectories: llm/ → extraction/, model/ → classifier/, preprocessing/ → io/ - Remove requirements.txt; add [project] section to pyproject.toml as single source of truth - Add __init__.py files to all src packages - Update all internal imports, CLI docstrings, test mocks, scripts, CI workflow, and CONTRIBUTING.md
Collaborator
Author
|
@bradleyrule @bradleyrule @QuiteRocks ready for review whenever you are free! |
raymondcen
approved these changes
May 13, 2026
Collaborator
raymondcen
left a comment
There was a problem hiding this comment.
New directory looks great!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
classify_extract.pyandextract-from-txt.pyintosrc/pipeline/, renaming the latter toextract_from_txt.pysrc/into four clearly bounded subdirectories:classifier/(wasmodel/),extraction/(wasllm/),io/(waspreprocessing/), andpipeline/(new)requirements.txtand adds a[project]section topyproject.tomlas the single source of truth for dependencies — install withpip install -e ".[dev]"CONTRIBUTING.md, andREADME.mdto reflect the new structureCloses #57