.gitignore 807 B

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