.gitignore 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. wip*
  2. repos
  3. .vscode
  4. *.env
  5. *egg-info
  6. *.so
  7. .conda
  8. build
  9. .VSCodeCounter
  10. conda/
  11. umamba.exe
  12. bin/
  13. *.whl
  14. # Byte-compiled / optimized / DLL files
  15. __pycache__/
  16. *.py[cod]
  17. *$py.class
  18. # C extensions
  19. *.so
  20. # Distribution / packaging
  21. .Python
  22. build/
  23. develop-eggs/
  24. dist/
  25. downloads/
  26. eggs/
  27. .eggs/
  28. lib/
  29. lib64/
  30. parts/
  31. sdist/
  32. var/
  33. wheels/
  34. share/python-wheels/
  35. *.egg-info/
  36. .installed.cfg
  37. *.egg
  38. MANIFEST
  39. # PyInstaller
  40. # Usually these files are written by a python script from a template
  41. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  42. *.manifest
  43. *.spec
  44. # Installer logs
  45. pip-log.txt
  46. pip-delete-this-directory.txt
  47. # Unit test / coverage reports
  48. htmlcov/
  49. .tox/
  50. .nox/
  51. .coverage
  52. .coverage.*
  53. .cache
  54. nosetests.xml
  55. coverage.xml
  56. *.cover
  57. *.py,cover
  58. .hypothesis/
  59. .pytest_cache/
  60. cover/
  61. # Translations
  62. *.mo
  63. *.pot
  64. # Django stuff:
  65. *.log
  66. local_settings.py
  67. db.sqlite3
  68. db.sqlite3-journal
  69. # Flask stuff:
  70. instance/
  71. .webassets-cache
  72. # Scrapy stuff:
  73. .scrapy
  74. # Sphinx documentation
  75. docs/_build/
  76. # PyBuilder
  77. .pybuilder/
  78. target/
  79. # Jupyter Notebook
  80. .ipynb_checkpoints
  81. # IPython
  82. profile_default/
  83. ipython_config.py
  84. # pyenv
  85. # For a library or package, you might want to ignore these files since the code is
  86. # intended to run in multiple environments; otherwise, check them in:
  87. # .python-version
  88. # pipenv
  89. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  90. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  91. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  92. # install all needed dependencies.
  93. #Pipfile.lock
  94. # poetry
  95. # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
  96. # This is especially recommended for binary packages to ensure reproducibility, and is more
  97. # commonly ignored for libraries.
  98. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
  99. #poetry.lock
  100. # pdm
  101. # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
  102. #pdm.lock
  103. # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
  104. # in version control.
  105. # https://pdm.fming.dev/#use-with-ide
  106. .pdm.toml
  107. # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
  108. __pypackages__/
  109. # Celery stuff
  110. celerybeat-schedule
  111. celerybeat.pid
  112. # SageMath parsed files
  113. *.sage.py
  114. # Environments
  115. .env
  116. .venv
  117. env/
  118. venv/
  119. ENV/
  120. env.bak/
  121. venv.bak/
  122. # Spyder project settings
  123. .spyderproject
  124. .spyproject
  125. # Rope project settings
  126. .ropeproject
  127. # mkdocs documentation
  128. /site
  129. # mypy
  130. .mypy_cache/
  131. .dmypy.json
  132. dmypy.json
  133. # Pyre type checker
  134. .pyre/
  135. # pytype static type analyzer
  136. .pytype/
  137. # Cython debug symbols
  138. cython_debug/
  139. # PyCharm
  140. # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
  141. # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
  142. # and can be added to the global gitignore or merged into this file. For a more nuclear
  143. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
  144. .idea/
  145. # VSCode
  146. .vscode/
  147. # DS Store
  148. .DS_Store
  149. # Results
  150. *.csv
  151. # Python pickle files
  152. *.pkl
  153. # Sphinx documentation
  154. _build/
  155. # vim swap files
  156. *.swo
  157. *.swp
  158. # HIP files generated by PyTorch
  159. *.hip
  160. *_hip*
  161. kv_cache_states/*
  162. quant_params/*
  163. .ruff_cache/
  164. images/