.npmignore 663 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. # vim swp files
  2. *.swp
  3. # Byte-compiled / optimized / DLL files
  4. __pycache__/
  5. *.py[cod]
  6. # C extensions
  7. *.so
  8. # Distribution / packaging
  9. .Python
  10. env/
  11. bin/
  12. build/
  13. develop-eggs/
  14. eggs/
  15. lib/
  16. lib64/
  17. parts/
  18. sdist/
  19. var/
  20. *.egg-info/
  21. .installed.cfg
  22. *.egg
  23. # Twisted plugins cache
  24. test_server/twisted/plugins/dropin.cache
  25. # local node_modules
  26. node_modules/
  27. # Installer logs
  28. pip-log.txt
  29. pip-delete-this-directory.txt
  30. # Unit test / coverage reports
  31. htmlcov/
  32. .tox/
  33. .coverage
  34. .cache
  35. nosetests.xml
  36. coverage.xml
  37. # Translations
  38. *.mo
  39. # Mr Developer
  40. .mr.developer.cfg
  41. .project
  42. .pydevproject
  43. # Rope
  44. .ropeproject
  45. # Django stuff:
  46. *.log
  47. *.pot
  48. # Sphinx documentation
  49. docs/_build/