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

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

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

# Git
.git/
.gitignore
.gitattributes

# Documentation (keep README.md for hatchling build)
docs/
examples/

# Tests
tests/
.pytest_cache/
.coverage
htmlcov/
.tox/

# IDE
.vscode/
.idea/
*.swp
*.swo
*~

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

# Type checking
.mypy_cache/
.pytype/
.pyre/
.dmypy.json

# Linting
.ruff_cache/

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

# Misc
*.log
.DS_Store
