# Python package .gitignore

# Build artifacts
build/
dist/
*.egg-info/
__pycache__/
*.py[cod]
*$py.class

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

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

# OS files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Logs
*.log

# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/

# Security - never commit these!
*.token
.env
.env.local
.env.*.local

# Temporary files
*.tmp
*.temp
.cache/ 