.gitignore 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. # ---> C++
  2. # Compiled Object files
  3. *.slo
  4. *.lo
  5. *.o
  6. *.obj
  7. # Precompiled Headers
  8. *.gch
  9. *.pch
  10. # Compiled Dynamic libraries
  11. *.so
  12. *.dylib
  13. *.dll
  14. # Fortran module files
  15. *.mod
  16. # Compiled Static libraries
  17. *.lai
  18. *.la
  19. *.a
  20. *.lib
  21. # Executables
  22. *.exe
  23. *.out
  24. *.app
  25. # ---> Java
  26. *.class
  27. # Mobile Tools for Java (J2ME)
  28. .mtj.tmp/
  29. # Package Files #
  30. *.jar
  31. *.war
  32. *.ear
  33. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  34. hs_err_pid*
  35. # ---> Python
  36. # Byte-compiled / optimized / DLL files
  37. __pycache__/
  38. *.py[cod]
  39. *$py.class
  40. # C extensions
  41. *.so
  42. # Distribution / packaging
  43. .Python
  44. env/
  45. build/
  46. develop-eggs/
  47. dist/
  48. downloads/
  49. eggs/
  50. .eggs/
  51. lib/
  52. lib64/
  53. parts/
  54. sdist/
  55. var/
  56. *.egg-info/
  57. .installed.cfg
  58. *.egg
  59. # PyInstaller
  60. # Usually these files are written by a python script from a template
  61. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  62. *.manifest
  63. *.spec
  64. # Installer logs
  65. pip-log.txt
  66. pip-delete-this-directory.txt
  67. # Unit test / coverage reports
  68. htmlcov/
  69. .tox/
  70. .coverage
  71. .coverage.*
  72. .cache
  73. nosetests.xml
  74. coverage.xml
  75. *,cover
  76. # Translations
  77. *.mo
  78. *.pot
  79. # Django stuff:
  80. *.log
  81. # Sphinx documentation
  82. docs/_build/
  83. # PyBuilder
  84. target/