.gitignore 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. # Windows default autosave extension
  2. *.asv
  3. # OSX / *nix default autosave extension
  4. *.m~
  5. # Compiled MEX binaries (all platforms)
  6. *.mex*
  7. # Packaged app and toolbox files
  8. *.mlappinstall
  9. *.mltbx
  10. # Generated helpsearch folders
  11. helpsearch*/
  12. # Simulink code generation folders
  13. slprj/
  14. sccprj/
  15. # Matlab code generation folders
  16. codegen/
  17. # Simulink autosave extension
  18. *.autosave
  19. # Simulink cache files
  20. *.slxc
  21. # Octave session info
  22. octave-workspace
  23. # Byte-compiled / optimized / DLL files
  24. __pycache__/
  25. *.py[cod]
  26. *$py.class
  27. # C extensions
  28. *.so
  29. # Distribution / packaging
  30. .Python
  31. tests/
  32. annexes/
  33. build/
  34. develop-eggs/
  35. dist/
  36. downloads/
  37. eggs/
  38. .eggs/
  39. lib/
  40. lib64/
  41. parts/
  42. sdist/
  43. var/
  44. wheels/
  45. pip-wheel-metadata/
  46. share/python-wheels/
  47. *.egg-info/
  48. .installed.cfg
  49. *.egg
  50. MANIFEST
  51. # PyInstaller
  52. # Usually these files are written by a python script from a template
  53. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  54. *.manifest
  55. *.spec
  56. # Installer logs
  57. pip-log.txt
  58. pip-delete-this-directory.txt
  59. # Unit test / coverage reports
  60. htmlcov/
  61. .tox/
  62. .nox/
  63. .coverage
  64. .coverage.*
  65. .cache
  66. nosetests.xml
  67. coverage.xml
  68. *.cover
  69. .hypothesis/
  70. .pytest_cache/
  71. # Translations
  72. *.mo
  73. *.pot
  74. # Django stuff:
  75. *.log
  76. local_settings.py
  77. db.sqlite3
  78. db.sqlite3-journal
  79. # Flask stuff:
  80. instance/
  81. .webassets-cache
  82. # Scrapy stuff:
  83. .scrapy
  84. # Sphinx documentation
  85. docs/_build/
  86. # PyBuilder
  87. target/
  88. # Jupyter Notebook
  89. .ipynb_checkpoints
  90. # IPython
  91. profile_default/
  92. ipython_config.py
  93. # pyenv
  94. .python-version
  95. # pipenv
  96. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  97. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  98. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  99. # install all needed dependencies.
  100. #Pipfile.lock
  101. # celery beat schedule file
  102. celerybeat-schedule
  103. # SageMath parsed files
  104. *.sage.py
  105. # Environments
  106. .env
  107. .venv
  108. env/
  109. venv/
  110. ENV/
  111. env.bak/
  112. venv.bak/
  113. # Spyder project settings
  114. .spyderproject
  115. .spyproject
  116. # Rope project settings
  117. .ropeproject
  118. # mkdocs documentation
  119. /site
  120. # mypy
  121. .mypy_cache/
  122. .dmypy.json
  123. dmypy.json
  124. # Pyre type checker
  125. .pyre/
  126. # IDE
  127. .idea
  128. .vscode/