# Docker
Dockerfile
.dockerignore

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

# Environment
.env
*.env
.venv/
venv/
env/
ENV/

# IDE / Editor files
.vscode/
.idea/
.cursor/
*.project
*.swp

# Test files
pytest_cache/
.pytest_cache/
htmlcov/
.coverage
tests/
coverage.xml

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

# Git
.git/
.gitignore

# GitHub Actions
.github/

# Documentation
docs/
README.md
LICENSE

# Cache directories
.ruff_cache/
*.cache

# OS specific
.DS_Store
Thumbs.db 