.gitignore 772 B

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