# Virtual environment
.venv/

# Environment files
.env
.env.local

# Python version management
.python-version

# UV lock file (can be regenerated)
uv.lock

# IDE/Editor files
*.code-workspace
.vscode/
.idea/

# Rules
.*/rules/

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

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

# Debug files
debug_*.py
debug_*.html
debug_*.json
debug_*.txt

# Temporary files
*.tmp
*.temp
*.bak
*.backup
*~

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

# Test outputs (keep test.srt as example)
*.srt
*.json
*.txt

# Coverage
.coverage
.coverage.*
htmlcov/
coverage.xml
.pytest_cache/

# UV cache and build artifacts
.cache/
.uv/

# MyPy cache
.mypy_cache/
.dmypy.json
dmypy.json

# Black cache
.black_cache/

# pycodestyle cache
.pytest_cache/

# IDE/Editor additional files
*.swp
*.swo
*~

# OS additional files
Thumbs.db
ehthumbs.db
Desktop.ini

# Temporary test files
test_output/
*.log

# Jupyter notebooks (if any)
.ipynb_checkpoints/

# Local configuration overrides
local_config.py
local_settings.py

# Documentation build artifacts
docs/_build/
docs/build/

# Sphinx documentation
docs/source/_build/

# Jupyter notebook outputs
*.ipynb

# Environment variables
.envrc

# Pre-commit hooks cache
.pre-commit-config.yaml

# Tox testing
.tox/

# Coverage badge (if generated)
coverage-badge.svg

# Local development files
local_*
dev_*

