25 lines
288 B
Plaintext
25 lines
288 B
Plaintext
# Python cache and local artifacts
|
|
__pycache__/
|
|
*.py[cod]
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
|
|
# Environment and local tooling metadata
|
|
.venv/
|
|
venv/
|
|
env/
|
|
.env
|
|
.env.*
|
|
|
|
# Test and coverage output
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
.pytype/
|
|
|
|
# Editor and OS noise
|
|
.DS_Store
|
|
.idea/
|
|
.vscode/
|