.gitignore 984 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. # ---> C
  2. # Object files
  3. *.o
  4. *.ko
  5. *.obj
  6. *.elf
  7. # Precompiled Headers
  8. *.gch
  9. *.pch
  10. # Libraries
  11. *.lib
  12. *.a
  13. *.la
  14. *.lo
  15. # Shared objects (inc. Windows DLLs)
  16. *.dll
  17. *.so
  18. *.so.*
  19. *.dylib
  20. # Executables
  21. *.exe
  22. *.out
  23. *.app
  24. *.i*86
  25. *.x86_64
  26. *.hex
  27. # Debug files
  28. *.dSYM/
  29. # ---> Python
  30. # Byte-compiled / optimized / DLL files
  31. __pycache__/
  32. *.py[cod]
  33. *$py.class
  34. # C extensions
  35. *.so
  36. # Distribution / packaging
  37. .Python
  38. env/
  39. build/
  40. develop-eggs/
  41. dist/
  42. downloads/
  43. eggs/
  44. .eggs/
  45. lib/
  46. lib64/
  47. parts/
  48. sdist/
  49. var/
  50. *.egg-info/
  51. .installed.cfg
  52. *.egg
  53. # PyInstaller
  54. # Usually these files are written by a python script from a template
  55. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  56. *.manifest
  57. *.spec
  58. # Installer logs
  59. pip-log.txt
  60. pip-delete-this-directory.txt
  61. # Unit test / coverage reports
  62. htmlcov/
  63. .tox/
  64. .coverage
  65. .coverage.*
  66. .cache
  67. nosetests.xml
  68. coverage.xml
  69. *,cover
  70. # Translations
  71. *.mo
  72. *.pot
  73. # Django stuff:
  74. *.log
  75. # Sphinx documentation
  76. docs/_build/
  77. # PyBuilder
  78. target/