.gitignore 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. # Notebooks
  2. *.ipynb
  3. # Databases
  4. *.db
  5. # Jupyter cache
  6. .jupyter_cache
  7. # IDE stuff
  8. .idea/
  9. # Ruff cache
  10. .ruff_cache
  11. # Licence check
  12. licence-check.txt
  13. # Byte-compiled / optimized / DLL files
  14. __pycache__/
  15. *.py[cod]
  16. *$py.class
  17. # C extensions
  18. *.so
  19. # Distribution / packaging
  20. .Python
  21. build/
  22. develop-eggs/
  23. dist/
  24. downloads/
  25. eggs/
  26. .eggs/
  27. lib/
  28. lib64/
  29. parts/
  30. sdist/
  31. var/
  32. wheels/
  33. pip-wheel-metadata/
  34. share/python-wheels/
  35. *.egg-info/
  36. .installed.cfg
  37. *.egg
  38. MANIFEST
  39. # PyInstaller
  40. # Usually these files are written by a python script from a template
  41. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  42. *.manifest
  43. *.spec
  44. # Installer logs
  45. pip-log.txt
  46. pip-delete-this-directory.txt
  47. # Unit test / coverage reports
  48. htmlcov/
  49. .tox/
  50. .nox/
  51. .coverage
  52. .coverage.*
  53. .cache
  54. nosetests.xml
  55. coverage.xml
  56. *.cover
  57. *.py,cover
  58. .hypothesis/
  59. .pytest_cache/
  60. # Translations
  61. *.mo
  62. *.pot
  63. # Django stuff:
  64. *.log
  65. local_settings.py
  66. db.sqlite3
  67. db.sqlite3-journal
  68. # Flask stuff:
  69. instance/
  70. .webassets-cache
  71. # Scrapy stuff:
  72. .scrapy
  73. # Sphinx documentation
  74. docs/_build/
  75. # PyBuilder
  76. target/
  77. # Jupyter Notebook
  78. .ipynb_checkpoints
  79. # IPython
  80. profile_default/
  81. ipython_config.py
  82. # pyenv
  83. .python-version
  84. # pipenv
  85. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  86. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  87. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  88. # install all needed dependencies.
  89. #Pipfile.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. # Mac stuff
  119. *.DS_Store