.gitignore 702 B

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