2
0

.gitignore 353 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # Randoms
  2. *Thumbs.db
  3. *.txz
  4. *.tar.xz
  5. *.tgz
  6. *.tar.gz
  7. *.sqlite3
  8. *.sql
  9. # Python
  10. *.pyc
  11. /build/
  12. /docs/_build/
  13. /dist/
  14. __pycache__
  15. *.egg-info/
  16. pip-wheel-metadata/
  17. # Environments
  18. .env
  19. .venv
  20. env/
  21. venv/
  22. ENV/
  23. # Editors
  24. .vscode/
  25. *~
  26. # Development & testing
  27. .coverage
  28. htmlcov/
  29. junit/
  30. coverage.xml
  31. testproject*/
  32. .cache
  33. .pytest_cache
  34. testmedia*/
  35. teststatic*/
  36. media/