.gitignore 758 B

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