# Git and version control
.git/
.gitignore
.gitattributes

# System files
/proc/
/sys/
/dev/

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
.venv/
.env
.env.*

# Build artifacts
build/
dist/
*.egg-info/
.eggs/

# Testing and development
.pytest_cache/
.coverage
.mypy_cache/
.ruff_cache/
htmlcov/
*.log

# IDE and editors
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store

# Documentation
docs/
*.md
!README.md

# CI/CD
.github/
.gitlab-ci.yml

# Other
*.tmp
*.bak
node_modules/