.gitignore 806 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. # ---> Vim
  2. [._]*.s[a-w][a-z]
  3. [._]s[a-w][a-z]
  4. *.un~
  5. Session.vim
  6. .netrwhist
  7. *~
  8. # ---> Python
  9. # Byte-compiled / optimized / DLL files
  10. __pycache__/
  11. *.py[cod]
  12. *$py.class
  13. # C extensions
  14. *.so
  15. # Distribution / packaging
  16. .Python
  17. env/
  18. build/
  19. develop-eggs/
  20. dist/
  21. downloads/
  22. eggs/
  23. .eggs/
  24. lib/
  25. lib64/
  26. parts/
  27. sdist/
  28. var/
  29. *.egg-info/
  30. .installed.cfg
  31. *.egg
  32. # PyInstaller
  33. # Usually these files are written by a python script from a template
  34. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  35. *.manifest
  36. *.spec
  37. # Installer logs
  38. pip-log.txt
  39. pip-delete-this-directory.txt
  40. # Unit test / coverage reports
  41. htmlcov/
  42. .tox/
  43. .coverage
  44. .coverage.*
  45. .cache
  46. nosetests.xml
  47. coverage.xml
  48. *,cover
  49. # Translations
  50. *.mo
  51. *.pot
  52. # Django stuff:
  53. *.log
  54. # Sphinx documentation
  55. docs/_build/
  56. # PyBuilder
  57. target/