.gitignore 555 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. *egg*
  2. env/
  3. var/
  4. log/
  5. tmp/
  6. dist
  7. __pycache__/
  8. # Gitignores from https://github.com/github/gitignore
  9. # Vi
  10. *.swp
  11. *.swo
  12. # Vim
  13. .*.sw[a-z]
  14. *.un~
  15. # OSX
  16. .DS_Store?
  17. Icon?
  18. # Thumbnails
  19. ._*
  20. # Files that might appear on external disk
  21. .Spotlight-V100
  22. .Trashes
  23. # Python
  24. *.py[co]
  25. # Packages
  26. *.egg
  27. *.egg-info
  28. dist
  29. build
  30. eggs
  31. parts
  32. bin
  33. develop-eggs
  34. .installed.cfg
  35. # Installer logs
  36. pip-log.txt
  37. # Unit test / coverage reports
  38. .coverage
  39. htmlcov
  40. coverage_report
  41. .tox
  42. # TextMate
  43. *.tmproj
  44. *.tmproject
  45. tmtags
  46. test.log
  47. example.py
  48. extensions
  49. .env
  50. .vagrant
  51. myapp*.py