```
# Distribution and build artifacts
dist/
build/
*.whl
*.tar.gz

# Python egg info
*.egg-info/

# Compiled Python files
__pycache__/
*.pyc
*.pyo
*.pyd

# Virtual environments
venv/
.venv/
env/
.ENV/

# Logs
*.log

# Coverage reports
.coverage
htmlcov/
.coverage.*
coverage.xml

# Pytest cache
.pytest_cache/

# Mypy cache
.mypy_cache/

# VS Code settings
.vscode/

# IntelliJ IDEA
.idea/

# Environment variables
.env
.env.local
.env.*

# OS generated files
.DS_Store
Thumbs.db

# Temporary files
*.tmp
*~
```