.gitignore 982 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. # ---> Python
  26. # Byte-compiled / optimized / DLL files
  27. __pycache__/
  28. *.py[cod]
  29. *$py.class
  30. # C extensions
  31. *.so
  32. # Distribution / packaging
  33. .Python
  34. env/
  35. build/
  36. develop-eggs/
  37. dist/
  38. downloads/
  39. eggs/
  40. .eggs/
  41. lib/
  42. lib64/
  43. parts/
  44. sdist/
  45. var/
  46. *.egg-info/
  47. .installed.cfg
  48. *.egg
  49. # PyInstaller
  50. # Usually these files are written by a python script from a template
  51. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  52. *.manifest
  53. *.spec
  54. # Installer logs
  55. pip-log.txt
  56. pip-delete-this-directory.txt
  57. # Unit test / coverage reports
  58. htmlcov/
  59. .tox/
  60. .coverage
  61. .coverage.*
  62. .cache
  63. nosetests.xml
  64. coverage.xml
  65. *,cover
  66. # Translations
  67. *.mo
  68. *.pot
  69. # Django stuff:
  70. *.log
  71. # Sphinx documentation
  72. docs/_build/
  73. # PyBuilder
  74. target/