.gitignore 981 B

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