.gitignore 748 Bytes
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Virtual Environment
venv/
env/
ENV/
.venv

# Environment Variables
.env
*.env
!.env.example

# IDEs
.vscode/
.idea/
.cursor/
*.swp
*.swo
*~
.DS_Store

# Data Files - ignore everything in data/ except .gitkeep files
data/**
!data/
!data/raw/
!data/processed/
!data/images/
!data/**/.gitkeep

# Database
*.db
*.sqlite
*.sqlite3

# Docker volumes
volumes/

# Logs & runtime
*.log
logs/
*.pid
nohup.out

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

# Jupyter
.ipynb_checkpoints/
*.ipynb

# Model caches
.cache/
models/

# Temporary files
tmp/
temp/
*.tmp