51 lines
465 B
Plaintext
51 lines
465 B
Plaintext
# Python bytecode / caches
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
|
|
# Test / tooling caches
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.pyre/
|
|
.hypothesis/
|
|
|
|
# Coverage
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
|
|
# Build artifacts
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
.eggs/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Local environment / secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Local runtime data
|
|
data/
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Editors / IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|