Skip to content

Commit d8f8b27

Browse files
jeremymanningclaude
andcommitted
Repository cleanup: Organize structure and remove duplicates
- Moved all output files to data/derivatives/ (30MB of outputs) - Organized demo scripts into examples/ directory - Removed duplicate demo scripts (8 duplicates identified and removed) - Moved misplaced test file to tests/ - Removed all cache files (__pycache__, .DS_Store, .pytest_cache) - Created cleanup script for future maintenance - Updated .gitignore with comprehensive patterns The repository structure is now: - code/quantum_conversations/ - Core package only - code/examples/ - Demo and utility scripts - code/tests/ - All test files - code/scripts/ - Maintenance scripts - data/derivatives/ - All generated outputs This cleanup saves 28.5MB and improves organization significantly. Part of issue #4 implementation. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent a005c42 commit d8f8b27

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+631
-1158
lines changed

.gitignore

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,4 +151,33 @@ models/
151151
*.aux
152152
*.fff
153153
*.synctex.gz
154-
*.bbl
154+
*.bbl
155+
# Repository cleanup patterns
156+
.venv/
157+
*.coverage
158+
code/*.png
159+
code/*.pdf
160+
code/*.pkl
161+
code/output/
162+
code/outputs/
163+
code/results/
164+
code/*_output/
165+
code/*_outputs/
166+
code/bumplot_*/
167+
code/test_*/
168+
code/demo_*/
169+
.vscode/
170+
.idea/
171+
*.swp
172+
*.swo
173+
*~
174+
Thumbs.db
175+
desktop.ini
176+
tmp/
177+
temp/
178+
*.tmp
179+
*.bak
180+
.ipynb_checkpoints/
181+
*.bin
182+
*.safetensors
183+
model_cache/

code/create_visualizations_from_pkl.py

Lines changed: 0 additions & 185 deletions
This file was deleted.

code/demo_1000_particles_final.py

Lines changed: 0 additions & 89 deletions
This file was deleted.

0 commit comments

Comments
 (0)