.gitignore 3.7 KB

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