.gitignore 291 B

123456789101112131415161718192021222324252627282930
  1. # Python
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. *.so
  6. .Python
  7. # Virtual environments
  8. venv/
  9. env/
  10. ENV/
  11. # IDE
  12. .vscode/
  13. .idea/
  14. *.swp
  15. *.swo
  16. # OS
  17. .DS_Store
  18. Thumbs.db
  19. # Testing
  20. .pytest_cache/
  21. .coverage
  22. htmlcov/
  23. # Local configuration (should not be committed)
  24. .claude/*.local.md
  25. .claude/*.local.json