38 lines
410 B
Plaintext
38 lines
410 B
Plaintext
# Python bytecode and caches
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Packaging artifacts
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
.eggs/
|
|
|
|
# Test and tooling caches
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
|
|
# Jupyter and IPython
|
|
.ipynb_checkpoints/
|
|
|
|
# Environment and local settings
|
|
.env
|
|
.env.*
|
|
*.local
|
|
|
|
# Editor and OS files
|
|
.vscode/
|
|
.idea/
|
|
.DS_Store
|