24 lines
226 B
Plaintext
24 lines
226 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
|
|
# Local secrets/config
|
|
.env
|
|
.env.*
|
|
*.local
|
|
|
|
# Build outputs
|
|
build/
|
|
dist/
|
|
*.egg-info/
|