.gitignore 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. # ---> Python
  15. # Byte-compiled / optimized / DLL files
  16. __pycache__/
  17. *.py[cod]
  18. *$py.class
  19. # C extensions
  20. *.so
  21. # Distribution / packaging
  22. .Python
  23. env/
  24. build/
  25. develop-eggs/
  26. dist/
  27. downloads/
  28. eggs/
  29. .eggs/
  30. lib/
  31. lib64/
  32. parts/
  33. sdist/
  34. var/
  35. *.egg-info/
  36. .installed.cfg
  37. *.egg
  38. # PyInstaller
  39. # Usually these files are written by a python script from a template
  40. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  41. *.manifest
  42. *.spec
  43. # Installer logs
  44. pip-log.txt
  45. pip-delete-this-directory.txt
  46. # Unit test / coverage reports
  47. htmlcov/
  48. .tox/
  49. .coverage
  50. .coverage.*
  51. .cache
  52. nosetests.xml
  53. coverage.xml
  54. *,cover
  55. # Translations
  56. *.mo
  57. *.pot
  58. # Django stuff:
  59. *.log
  60. # Sphinx documentation
  61. docs/_build/
  62. # PyBuilder
  63. target/
  64. # ---> R
  65. # History files
  66. .Rhistory
  67. .Rapp.history
  68. # Example code in package build process
  69. *-Ex.R
  70. # RStudio files
  71. .Rproj.user/
  72. # produced vignettes
  73. vignettes/*.html
  74. vignettes/*.pdf
  75. # OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
  76. .httr-oauth