# Python
__pycache__/
*.pyc
*.pyo
*.egg-info/
.pytest_cache/

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

# Virtual environments
venv/
.venv/
env/

# Distribution
*.whl
*.tar.gz

# OS junk
.DS_Store

# Editor
.vscode/
.idea/

# Coverage / test outputs
.coverage
htmlcov/
.tox/

# Local config
.env
.env.*