.gitignore 418 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. # Byte-compiled / optimized / DLL files
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. # Distribution / packaging
  6. build/
  7. dist/
  8. *.egg
  9. *.eggs
  10. *.egg-info/
  11. MANIFEST
  12. # Documentation
  13. docs/build/
  14. # mypy
  15. .mypy_cache/
  16. # Unit test / coverage reports
  17. .tox/
  18. htmlcov/
  19. .coverage
  20. .coverage.*
  21. .*cache
  22. nosetests.xml
  23. coverage.xml
  24. *.cover
  25. # Misc
  26. *~
  27. .*.sw?
  28. # For IntelliJ IDEs (basically PyCharm)
  29. .idea/
  30. # Scratch Pad for experiments
  31. .scratch/