60 lines
657 B
Text
60 lines
657 B
Text
# Python bytecode / caches
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.pyo
|
|
*.pyd
|
|
*.so
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
.music/.venv/ # if your venv lives specifically under /music
|
|
.python-version
|
|
.env
|
|
.env.*
|
|
|
|
# Packaging / wheels / builds
|
|
build/
|
|
dist/
|
|
.eggs/
|
|
*.egg-info/
|
|
pip-wheel-metadata/
|
|
|
|
# Tests / coverage / benchmarks
|
|
.pytest_cache/
|
|
.tox/
|
|
.nox/
|
|
.coverage*
|
|
htmlcov/
|
|
.hypothesis/
|
|
.benchmark/
|
|
|
|
# Type checkers / linters
|
|
.mypy_cache/
|
|
.pytype/
|
|
.pyre/
|
|
.ruff_cache/
|
|
|
|
# Jupyter
|
|
.ipynb_checkpoints/
|
|
|
|
# Logs / databases / local data
|
|
*.log
|
|
*.sqlite3
|
|
|
|
# OS cruft
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDEs / editors
|
|
.idea/
|
|
*.iml
|
|
.vscode/
|
|
*.s
|
|
*.sym
|
|
*.prg
|
|
|
|
.claude/
|
|
.npm/
|