You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

162 lines
3.0 KiB

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