.gitignore 754 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. # Byte-compiled / optimized / DLL files
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. # C extensions
  6. *.so
  7. # Distribution / packaging
  8. .Python
  9. build/
  10. develop-eggs/
  11. dist/
  12. downloads/
  13. eggs/
  14. .eggs/
  15. lib/
  16. lib64/
  17. parts/
  18. sdist/
  19. var/
  20. wheels/
  21. *.egg-info/
  22. .installed.cfg
  23. *.egg
  24. # PyInstaller
  25. *.manifest
  26. *.spec
  27. # Unit test / coverage reports
  28. htmlcov/
  29. .tox/
  30. .coverage
  31. .coverage.*
  32. .cache
  33. nosetests.xml
  34. coverage.xml
  35. *.cover
  36. .hypothesis/
  37. .pytest_cache/
  38. # Virtual environments
  39. venv/
  40. ENV/
  41. env/
  42. .venv
  43. test_env/
  44. m2m_translator_env/
  45. # IDEs
  46. .vscode/
  47. .idea/
  48. *.swp
  49. *.swo
  50. *~
  51. # OS
  52. .DS_Store
  53. Thumbs.db
  54. # Project specific
  55. models/
  56. output_folder/
  57. phase0-test/
  58. phase0_validation/
  59. *.log
  60. *.tmp
  61. _bmad/
  62. # Claude wrappers
  63. .claude-wrapper-*.sh
  64. .claude/
  65. .tmp-input-*.txt
  66. .dev-container-config.json