# Ignore everything outside the lottery-predictor directory
# This ensures only files within this directory are committed

# Ignore parent directories and other project files
../*
../.*/
!../lottery-predictor/

# 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

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

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

# OS
.DS_Store
Thumbs.db

# Playwright
playwright/.cache/

# Logs
*.log

# Project specific
.trae/
.codex_tmp/

#这个文件是pytest的缓存文件，需要忽略
.pytest_cache/
