.gitignore 3.4 KB

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