| 1 | # Python |
| 2 | __pycache__/ |
| 3 | *.py[cod] |
| 4 | *$py.class |
| 5 | *.so |
| 6 | .Python |
| 7 | build/ |
| 8 | develop-eggs/ |
| 9 | dist/ |
| 10 | downloads/ |
| 11 | eggs/ |
| 12 | .eggs/ |
| 13 | lib/ |
| 14 | lib64/ |
| 15 | parts/ |
| 16 | sdist/ |
| 17 | var/ |
| 18 | wheels/ |
| 19 | *.egg-info/ |
| 20 | .installed.cfg |
| 21 | *.egg |
| 22 | |
| 23 | # Virtual environments |
| 24 | venv/ |
| 25 | ENV/ |
| 26 | env/ |
| 27 | .venv/ |
| 28 | |
| 29 | # IDEs |
| 30 | .vscode/ |
| 31 | .idea/ |
| 32 | *.swp |
| 33 | *.swo |
| 34 | *~ |
| 35 | .cursorrules |
| 36 | .cursorignore |
| 37 | .kiro/ |
| 38 | |
| 39 | # OS |
| 40 | .DS_Store |
| 41 | Thumbs.db |
| 42 | |
| 43 | # Config files with sensitive data |
| 44 | config.yaml |
| 45 | config.yaml.bak |
| 46 | *.yaml.bak |
| 47 | .env |
| 48 | |
| 49 | # Logs |
| 50 | *.log |
| 51 | |
| 52 | # Test outputs |
| 53 | test_outputs/ |
| 54 | *.mp3 |
| 55 | *.wav |
| 56 | *.bak |
| 57 | test_*.py |
| 58 | |
| 59 | !bgm/default.mp3 |
| 60 | |
| 61 | # Temp files |
| 62 | temp/ |
| 63 | tmp/ |
| 64 | .cache/ |
| 65 | |
| 66 | # MkDocs build output |
| 67 | site/ |
| 68 | |
| 69 | data |
| 70 | output |
| 71 | |
| 72 | plans/ |
| 73 | examples/ |
| 74 | repositories/ |
| 75 | |
| 76 | *.out |
| 77 |