43 lines
357 B
Plaintext
43 lines
357 B
Plaintext
# Python cache
|
|
__pycache__/
|
|
**/__pycache__/
|
|
*.py[cod]
|
|
*.pyc
|
|
*$py.class
|
|
|
|
# Distribution / packaging
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
*.egg
|
|
|
|
# Virtual environments
|
|
.env
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
Desktop.ini
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Test output
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
*.bak
|