.gitignore 674 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. # Backup files
  2. *.bak
  3. # Distribution / packaging
  4. *.egg
  5. *.egg-info/
  6. *.manifest
  7. *.spec
  8. .Python build/
  9. .eggs/
  10. .installed.cfg
  11. develop-eggs/
  12. dist/
  13. downloads/
  14. eggs/
  15. lib/
  16. lib64/
  17. parts/
  18. sdist/
  19. var/
  20. wheels/
  21. # Django
  22. *.log
  23. *.pot
  24. *.pyc
  25. /staticfiles
  26. __pycache__
  27. db.sqlite3
  28. media
  29. # Environments
  30. .venv
  31. /.env
  32. /local
  33. ENV/
  34. env.bak/
  35. env/
  36. venv
  37. venv.bak/
  38. venv/
  39. # IDEs
  40. .DS_Store
  41. .idea
  42. .vscode
  43. # Installer logs
  44. pip-delete-this-directory.txt
  45. pip-log.txt
  46. # mypy
  47. .mypy_cache
  48. # pyenv
  49. .python-version
  50. # pytest
  51. .pytest_cache
  52. # Python
  53. *$py.class
  54. *.py[cod]
  55. # Unit test / coverage reports
  56. *.cover
  57. .cache
  58. .coverage
  59. .coverage.*
  60. .hypothesis/
  61. .pytest_cache/
  62. .tox/
  63. coverage.xml
  64. htmlcov/
  65. nosetests.xml