43 lines
475 B
Plaintext
43 lines
475 B
Plaintext
# Virtual environments
|
|
venv/
|
|
.venv/
|
|
|
|
# Python bytecode and compiled files
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.so
|
|
|
|
# Package metadata
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# Test coverage and reporting
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
.pytest_cache/
|
|
|
|
# Type checking caches
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
|
|
# IDE and system files
|
|
.DS_Store
|
|
*.log
|
|
|
|
# Opencode directory
|
|
.opencode/
|
|
|
|
# Node modules (if applicable)
|
|
node_modules/
|
|
|
|
# Runtime data
|
|
data/
|
|
*.db
|
|
*.sqlite
|
|
|
|
# Logs and temporary files
|
|
logs/
|
|
*.tmp
|
|
*.temp |