.gitignore 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. # ==============================
  2. # Python bytecode
  3. # ==============================
  4. __pycache__/
  5. *.py[cod]
  6. *$py.class
  7. # ==============================
  8. # C extensions
  9. # ==============================
  10. *.so
  11. # ==============================
  12. # Distribution / packaging
  13. # ==============================
  14. .Python
  15. build/
  16. develop-eggs/
  17. dist/
  18. downloads/
  19. eggs/
  20. .eggs/
  21. lib/
  22. lib64/
  23. parts/
  24. sdist/
  25. var/
  26. *.egg-info/
  27. *.egg
  28. MANIFEST
  29. # ==============================
  30. # Virtual environments
  31. # ==============================
  32. venv/
  33. .env/
  34. .venv/
  35. ENV/
  36. env/
  37. env.bak/
  38. venv.bak/
  39. # ==============================
  40. # Installer logs
  41. # ==============================
  42. pip-log.txt
  43. pip-delete-this-directory.txt
  44. # ==============================
  45. # Unit test / coverage
  46. # ==============================
  47. htmlcov/
  48. .tox/
  49. .nox/
  50. .coverage
  51. .coverage.*
  52. .cache
  53. pytest_cache/
  54. nosetests.xml
  55. coverage.xml
  56. *.cover
  57. *.py,cover
  58. # ==============================
  59. # Jupyter Notebook
  60. # ==============================
  61. .ipynb_checkpoints
  62. # ==============================
  63. # PyInstaller
  64. # ==============================
  65. *.manifest
  66. *.spec
  67. # ==============================
  68. # Logs
  69. # ==============================
  70. *.log
  71. # ==============================
  72. # OS files
  73. # ==============================
  74. .DS_Store
  75. Thumbs.db
  76. # ==============================
  77. # Database files
  78. # ==============================
  79. *.db
  80. *.sqlite
  81. *.sqlite3
  82. # ==============================
  83. # IDE
  84. # ==============================
  85. .vscode/
  86. .idea/
  87. *.swp
  88. *.swo
  89. .claude/
  90. # ==============================
  91. # mypy
  92. # ==============================
  93. .mypy_cache/
  94. .dmypy.json
  95. dmypy.json
  96. # ==============================
  97. # Pyre
  98. # ==============================
  99. .pyre/
  100. # ==============================
  101. # Ruff / lint
  102. # ==============================
  103. .ruff_cache/
  104. # ==============================
  105. # Pylint
  106. # ==============================
  107. .pylint.d/
  108. # ==============================
  109. # pytype
  110. # ==============================
  111. .pytype/
  112. # ==============================
  113. # dotenv
  114. # ==============================
  115. .env
  116. .env.*
  117. # ==============================
  118. # Local data / experiment output
  119. # ==============================
  120. data/
  121. outputs/
  122. checkpoints/
  123. models/
  124. # ==============================
  125. # LaTeX build artifacts
  126. # ==============================
  127. paper/*.aux
  128. paper/*.bbl
  129. paper/*.blg
  130. paper/*.log
  131. paper/*.out
  132. paper/*.fls
  133. paper/*.fdb_latexmk
  134. paper/*.synctex.gz
  135. # ==============================
  136. # Large feature / experiment cache (keep local only)
  137. # ==============================
  138. results/p0_features/
  139. results/*.npz
  140. __pycache__/
  141. patents/patent-01-lint/node_modules/
  142. # ==============================
  143. # Agent workspace — run data, not tracked
  144. # Each run creates workspace/run_YYYYMMDD_HHMMSS/ with intermediate
  145. # and final artifacts. These are local execution data, never committed.
  146. # ==============================
  147. **/workspace/
  148. !**/workspace/.gitkeep