.gitignore 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. # Created by https://www.toptal.com/developers/gitignore/api/python
  2. # Edit at https://www.toptal.com/developers/gitignore?templates=python
  3. ### Python ###
  4. # Byte-compiled / optimized / DLL files
  5. __pycache__/
  6. *.py[cod]
  7. *$py.class
  8. # C extensions
  9. *.so
  10. # Distribution / packaging
  11. .Python
  12. build/
  13. develop-eggs/
  14. dist/
  15. downloads/
  16. eggs/
  17. .eggs/
  18. lib/
  19. lib64/
  20. parts/
  21. sdist/
  22. var/
  23. wheels/
  24. share/python-wheels/
  25. *.egg-info/
  26. .installed.cfg
  27. *.egg
  28. MANIFEST
  29. # PyInstaller
  30. # Usually these files are written by a python script from a template
  31. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  32. *.manifest
  33. *.spec
  34. # Installer logs
  35. pip-log.txt
  36. pip-delete-this-directory.txt
  37. # Unit test / coverage reports
  38. htmlcov/
  39. .tox/
  40. .nox/
  41. .coverage
  42. .coverage.*
  43. .cache
  44. nosetests.xml
  45. coverage.xml
  46. *.cover
  47. *.py,cover
  48. .hypothesis/
  49. .pytest_cache/
  50. cover/
  51. # Translations
  52. *.mo
  53. *.pot
  54. # Django stuff:
  55. *.log
  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. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  91. __pypackages__/
  92. # Celery stuff
  93. celerybeat-schedule
  94. celerybeat.pid
  95. # SageMath parsed files
  96. *.sage.py
  97. # Environments
  98. .env
  99. .venv
  100. env/
  101. venv/
  102. ENV/
  103. env.bak/
  104. venv.bak/
  105. # Spyder project settings
  106. .spyderproject
  107. .spyproject
  108. # Rope project settings
  109. .ropeproject
  110. # mkdocs documentation
  111. /site
  112. # mypy
  113. .mypy_cache/
  114. .dmypy.json
  115. dmypy.json
  116. # Pyre type checker
  117. .pyre/
  118. # pytype static type analyzer
  119. .pytype/
  120. # Cython debug symbols
  121. cython_debug/
  122. # PyCharm
  123. # JetBrains specific template is maintainted in a separate JetBrains.gitignore that can
  124. # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
  125. # and can be added to the global gitignore or merged into this file. For a more nuclear
  126. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
  127. #.idea/
  128. # End of https://www.toptal.com/developers/gitignore/api/python
  129. tags
  130. .vimrc