.gitignore 713B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. # Byte-compiled / optimized / DLL files
  2. __pycache__/
  3. *.py[cod]
  4. # C extensions
  5. *.so
  6. # Distribution / packaging
  7. .Python
  8. env/
  9. build/
  10. develop-eggs/
  11. eggs/
  12. #lib/
  13. lib64/
  14. parts/
  15. sdist/
  16. var/
  17. *.egg-info/
  18. .installed.cfg
  19. *.egg
  20. # Installer logs
  21. pip-log.txt
  22. pip-delete-this-directory.txt
  23. # Unit test / coverage reports
  24. htmlcov/
  25. .tox/
  26. .coverage
  27. .cache
  28. nosetests.xml
  29. coverage.xml
  30. .pytest_cache
  31. # Mr Developer
  32. .mr.developer.cfg
  33. .project
  34. .pydevproject
  35. # Rope
  36. .ropeproject
  37. # Django stuff:
  38. *.log
  39. *.pot
  40. # Sphinx documentation
  41. docs/_build/
  42. # Vim and dev tools
  43. *.swp
  44. .idea
  45. # Site-local config file
  46. development.ini
  47. track.js
  48. wsgidav.conf
  49. # Temporary files
  50. *~
  51. *.sqlite
  52. *.lock
  53. depot/
  54. # binary translation files
  55. *.mo
  56. .mypy_cache/