35 lines
330 B
Plaintext
35 lines
330 B
Plaintext
# Virtual environment
|
|
venv/
|
|
test_venv/
|
|
|
|
# Build directories
|
|
build/
|
|
dist/
|
|
test_build/
|
|
|
|
# Python cache
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.bak
|
|
*.swp
|
|
|
|
# Operating system files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE specific files
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Project specific files
|
|
app_config.json
|
|
*.svg
|
|
|
|
# Test cache
|
|
.pytest_cache/
|