# Environment variables (secrets)
.env

# Devcontainer generated files
.devcontainer/.env

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

# Virtual environments (uv manages these)
.venv/
venv/
ENV/
env/

# Distribution / packaging
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
*.manifest
*.spec

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/
.mypy_cache/

# Jupyter Notebook
.ipynb_checkpoints

# pyenv
# .python-version - Track this file to ensure consistent Python versions across team

# IDEs
# VS Code: Track workspace configs, exclude user-specific files
.vscode/launch.json
.vscode/ipch/
.idea/
*.swp
*.swo
*~
.DS_Store

# Gradio temporary files
gradio_cached_examples/
flagged/

# Logs
*.log

# Node.js / pnpm (for Turborepo compatibility)
node_modules/
.turbo/
package-lock.json
yarn.lock
.pnpm-store
pnpm-lock.yaml # may be managed by monorepo root

# Tracked files (NOT ignored - important for project setup)
# .python-version - Python version specification (tracked for team consistency)
# .gitattributes - Git LFS configuration (tracked for LFS-managed files)
