Files
2026-07-13 13:04:41 +08:00

38 lines
374 B
Plaintext

# Python bytecode
__pycache__/
*.py[cod]
*$py.class
# Virtual environments
.venv/
venv/
env/
ENV/
# Build and packaging
build/
dist/
*.egg-info/
.eggs/
# Test and coverage
.pytest_cache/
.coverage
htmlcov/
# Tool caches
.mypy_cache/
.ruff_cache/
.ipynb_checkpoints/
# Local runtime outputs
outputs/
log/
*.log
# OS and editor files
.DS_Store
Thumbs.db
.vscode/
.idea/