.gitignore 3.9 KB

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