.gitignore 630 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. *.iml
  2. .idea/
  3. .ropeproject
  4. node_modules
  5. bower_components
  6. # Byte-compiled / optimized / DLL files
  7. __pycache__/
  8. *.py[cod]
  9. # C extensions
  10. *.so
  11. # Distribution / packaging
  12. .Python
  13. env/
  14. build/
  15. develop-eggs/
  16. dist/
  17. sdist/
  18. *.egg-info/
  19. .installed.cfg
  20. *.egg
  21. # PyInstaller
  22. # Usually these files are written by a python script from a template
  23. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  24. *.manifest
  25. *.spec
  26. # Installer logs
  27. pip-log.txt
  28. pip-delete-this-directory.txt
  29. # Unit test / coverage reports
  30. htmlcov/
  31. .tox/
  32. .coverage
  33. .cache
  34. nosetests.xml
  35. coverage.xml
  36. # Sphinx documentation
  37. docs/_build/
  38. .DS_Store