# Environment files
.env
.env.*

# Python virtual environments
.venv
venv/

# Python cache and compiled files
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
*.so

# IDE and editor files
.cursor/
.vscode/
.vscodeignore
.idea/
.DS_Store

# Git
.git/
.gitignore

# Python development and testing
.pytest_cache/
.ruff_cache/
.mypy_cache/
.coverage
.tox/
.nox/

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


# Development configuration
.pre-commit-config.yaml
