# Git .git .gitignore .gitattributes # Python __pycache__/ *.py[cod] *$py.class *.so .Python *.egg-info/ dist/ build/ *.egg # Virtual environments .venv/ venv/ ENV/ env/ # PDM .pdm-python .pdm-build/ # IDE .vscode/ .idea/ *.swp *.swo *~ # Testing .pytest_cache/ .coverage htmlcov/ .tox/ # Documentation docs/_build/ # Environment files .env .envrc # Cache cache/ __pycache__/ .ruff_cache/ # Logs *.log scripts.log # OS .DS_Store Thumbs.db # Kiro .kiro/ # Development files scripts/playground/ tests/