.gitignore 782 B

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