.gitignore 3.2 KB

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