.gitignore 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. # Modified from https://github.com/github/gitignore/blob/main/Python.gitignore by Jiarui Xu
  2. # Byte-compiled / optimized / DLL files
  3. __pycache__/
  4. *.py[cod]
  5. *$py.class
  6. # C extensions
  7. *.so
  8. # Distribution / packaging
  9. .Python
  10. build/
  11. develop-eggs/
  12. dist/
  13. downloads/
  14. eggs/
  15. .eggs/
  16. lib/
  17. lib64/
  18. parts/
  19. sdist/
  20. var/
  21. wheels/
  22. share/python-wheels/
  23. *.egg-info/
  24. .installed.cfg
  25. *.egg
  26. MANIFEST
  27. *.pth
  28. local_data/
  29. output/
  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. *.log
  57. local_settings.py
  58. db.sqlite3
  59. db.sqlite3-journal
  60. # Flask stuff:
  61. instance/
  62. .webassets-cache
  63. # Scrapy stuff:
  64. .scrapy
  65. # Sphinx documentation
  66. docs/_build/
  67. # PyBuilder
  68. .pybuilder/
  69. target/
  70. # Jupyter Notebook
  71. .ipynb_checkpoints
  72. # IPython
  73. profile_default/
  74. ipython_config.py
  75. # pyenv
  76. # For a library or package, you might want to ignore these files since the code is
  77. # intended to run in multiple environments; otherwise, check them in:
  78. # .python-version
  79. # pipenv
  80. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  81. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  82. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  83. # install all needed dependencies.
  84. #Pipfile.lock
  85. # poetry
  86. # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
  87. # This is especially recommended for binary packages to ensure reproducibility, and is more
  88. # commonly ignored for libraries.
  89. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
  90. #poetry.lock
  91. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  92. __pypackages__/
  93. # Celery stuff
  94. celerybeat-schedule
  95. celerybeat.pid
  96. # SageMath parsed files
  97. *.sage.py
  98. # Environments
  99. .env
  100. .venv
  101. env/
  102. venv/
  103. ENV/
  104. env.bak/
  105. venv.bak/
  106. # Spyder project settings
  107. .spyderproject
  108. .spyproject
  109. # Rope project settings
  110. .ropeproject
  111. # mkdocs documentation
  112. /site
  113. # mypy
  114. .mypy_cache/
  115. .dmypy.json
  116. dmypy.json
  117. # Pyre type checker
  118. .pyre/
  119. # pytype static type analyzer
  120. .pytype/
  121. # Cython debug symbols
  122. cython_debug/
  123. # PyCharm
  124. # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
  125. # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
  126. # and can be added to the global gitignore or merged into this file. For a more nuclear
  127. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
  128. .idea/
  129. # vscode
  130. .vscode
  131. # Mac OS
  132. .DS_Store