Python.gitignore 460 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. eggs/
  13. lib/
  14. lib64/
  15. parts/
  16. sdist/
  17. var/
  18. *.egg-info/
  19. .installed.cfg
  20. *.egg
  21. # Installer logs
  22. pip-log.txt
  23. pip-delete-this-directory.txt
  24. # Unit test / coverage reports
  25. htmlcov/
  26. .tox/
  27. .coverage
  28. .cache
  29. nosetests.xml
  30. coverage.xml
  31. # Translations
  32. *.mo
  33. *.pot
  34. # Django stuff:
  35. *.log
  36. # Sphinx documentation
  37. docs/_build/