29 lines
285 B
Plaintext
29 lines
285 B
Plaintext
# Python cache and bytecode
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Build and packaging artifacts
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
|
|
# Tool caches
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
|
|
# IDE/editor
|
|
.vscode/
|
|
.idea/
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|