.gitignore 3.3 KB

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