34 lines
348 B
Plaintext
34 lines
348 B
Plaintext
# Python caches
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# Build and packaging artifacts
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
|
|
# Test and tooling caches
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Local calibration captures
|
|
calibrations/
|
|
|
|
# Editor/OS noise
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*~
|
|
Thumbs.db
|
|
Desktop.ini
|
|
|