.gitignore 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. # ---> Matlab
  2. ##---------------------------------------------------
  3. ## Remove autosaves generated by the Matlab editor
  4. ## We have git for backups!
  5. ##---------------------------------------------------
  6. # Windows default autosave extension
  7. *.asv
  8. # OSX / *nix default autosave extension
  9. *.m~
  10. # Compiled MEX binaries (all platforms)
  11. *.mex*
  12. # Simulink Code Generation
  13. slprj/
  14. # ---> R
  15. # History files
  16. .Rhistory
  17. .Rapp.history
  18. # Example code in package build process
  19. *-Ex.R
  20. # RStudio files
  21. .Rproj.user/
  22. # produced vignettes
  23. vignettes/*.html
  24. vignettes/*.pdf
  25. # OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
  26. .httr-oauth
  27. # ---> Python
  28. # Byte-compiled / optimized / DLL files
  29. __pycache__/
  30. *.py[cod]
  31. *$py.class
  32. # C extensions
  33. *.so
  34. # Distribution / packaging
  35. .Python
  36. env/
  37. build/
  38. develop-eggs/
  39. dist/
  40. downloads/
  41. eggs/
  42. .eggs/
  43. lib/
  44. lib64/
  45. parts/
  46. sdist/
  47. var/
  48. *.egg-info/
  49. .installed.cfg
  50. *.egg
  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. .coverage
  63. .coverage.*
  64. .cache
  65. nosetests.xml
  66. coverage.xml
  67. *,cover
  68. # Translations
  69. *.mo
  70. *.pot
  71. # Django stuff:
  72. *.log
  73. # Sphinx documentation
  74. docs/_build/
  75. # PyBuilder
  76. target/
  77. # ---> TortoiseGit
  78. # Project-level settings
  79. /.tgitconfig