28 lines
338 B
Plaintext
28 lines
338 B
Plaintext
# Python bytecode and test/tool caches
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# Local runtime data
|
|
logs/
|
|
exports/
|
|
run/
|
|
state/*.sqlite3
|
|
state/*.sqlite3-*
|
|
|
|
# Editable Python installation metadata
|
|
src/*.egg-info/
|
|
|
|
# Environment/secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|