45 lines
475 B
Plaintext
45 lines
475 B
Plaintext
# Python bytecode and caches
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Build and packaging artifacts
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
.eggs/
|
|
pip-wheel-metadata/
|
|
*.whl
|
|
|
|
# Test and coverage outputs
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
|
|
# Local tooling/runtime files
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.log
|
|
.codex
|
|
|
|
# IDE/editor settings
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Local test artifacts
|
|
test_preview.md
|
|
blog/
|