36 lines
292 B
Plaintext
36 lines
292 B
Plaintext
# Virtual environments
|
|
venv/
|
|
.venv/
|
|
pyPhotoAlbum/venv/
|
|
|
|
# Python cache
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
dist/
|
|
eggs/
|
|
*.egg-info/
|
|
*.egg
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Git
|
|
.git/
|
|
|
|
# Test/coverage
|
|
.coverage
|
|
htmlcov/
|
|
.pytest_cache/
|
|
.tox/
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|