32 lines
333 B
Plaintext
32 lines
333 B
Plaintext
# Python bytecode and caches
|
|
__pycache__/
|
|
*.py[oc]
|
|
*.pyd
|
|
*.pyo
|
|
*.so
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
|
|
# Build artifacts
|
|
build/
|
|
dist/
|
|
wheels/
|
|
*.egg-info
|
|
site/
|
|
|
|
# Virtual environments
|
|
.venv
|
|
venv/
|
|
|
|
# Editors and local tooling
|
|
.DS_Store
|
|
.idea/
|
|
.vscode/
|
|
|
|
# uv and local Python state
|
|
.python-version
|