.gitignore 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. # ---> Python
  2. # Byte-compiled / optimized / DLL files
  3. __pycache__/
  4. *.py[cod]
  5. *$py.class
  6. # C extensions
  7. *.so
  8. # Distribution / packaging
  9. .Python
  10. env/
  11. build/
  12. develop-eggs/
  13. dist/
  14. downloads/
  15. eggs/
  16. .eggs/
  17. lib/
  18. lib64/
  19. parts/
  20. sdist/
  21. var/
  22. *.egg-info/
  23. .installed.cfg
  24. *.egg
  25. # PyInstaller
  26. # Usually these files are written by a python script from a template
  27. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  28. *.manifest
  29. *.spec
  30. # Installer logs
  31. pip-log.txt
  32. pip-delete-this-directory.txt
  33. # Unit test / coverage reports
  34. htmlcov/
  35. .tox/
  36. .coverage
  37. .coverage.*
  38. .cache
  39. nosetests.xml
  40. coverage.xml
  41. *,cover
  42. # Translations
  43. *.mo
  44. *.pot
  45. # Django stuff:
  46. *.log
  47. # Sphinx documentation
  48. docs/_build/
  49. # PyBuilder
  50. target/
  51. # ---> R
  52. # History files
  53. .Rhistory
  54. .Rapp.history
  55. # Example code in package build process
  56. *-Ex.R
  57. # RStudio files
  58. .Rproj.user/
  59. # produced vignettes
  60. vignettes/*.html
  61. vignettes/*.pdf
  62. # OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
  63. .httr-oauth
  64. # ---> CakePHP
  65. # CakePHP 3
  66. /vendor/*
  67. /config/app.php
  68. /tmp/*
  69. /logs/*
  70. # CakePHP 2
  71. /app/tmp/*
  72. /app/Config/core.php
  73. /app/Config/database.php
  74. /vendors/*
  75. # ---> C++
  76. # Compiled Object files
  77. *.slo
  78. *.lo
  79. *.o
  80. *.obj
  81. # Precompiled Headers
  82. *.gch
  83. *.pch
  84. # Compiled Dynamic libraries
  85. *.so
  86. *.dylib
  87. *.dll
  88. # Fortran module files
  89. *.mod
  90. # Compiled Static libraries
  91. *.lai
  92. *.la
  93. *.a
  94. *.lib
  95. # Executables
  96. *.exe
  97. *.out
  98. *.app
  99. # ---> Java
  100. *.class
  101. # Mobile Tools for Java (J2ME)
  102. .mtj.tmp/
  103. # Package Files #
  104. *.jar
  105. *.war
  106. *.ear
  107. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  108. hs_err_pid*
  109. /.settings
  110. /.vs