.gitignore 544 B

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