.gitignore 993 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. # ---> R
  2. # History files
  3. .Rhistory
  4. .Rapp.history
  5. # Example code in package build process
  6. *-Ex.R
  7. # RStudio files
  8. .Rproj.user/
  9. # produced vignettes
  10. vignettes/*.html
  11. vignettes/*.pdf
  12. # OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
  13. .httr-oauth
  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/