.gitignore 3.3 KB

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