.gitignore 535 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # Temporary and binary files
  2. *~
  3. *.py[cod]
  4. *.so
  5. *.cfg
  6. !.isort.cfg
  7. !setup.cfg
  8. *.orig
  9. *.log
  10. *.pot
  11. __pycache__/*
  12. .cache/*
  13. .*.swp
  14. */.ipynb_checkpoints/*
  15. # Project files
  16. .ropeproject
  17. .project
  18. .pydevproject
  19. .settings
  20. .idea
  21. tags
  22. # Package files
  23. *.egg
  24. *.eggs/
  25. .installed.cfg
  26. *.egg-info
  27. # Unittest and coverage
  28. htmlcov/*
  29. .coverage
  30. .tox
  31. junit.xml
  32. coverage.xml
  33. .pytest_cache/
  34. # Build and docs folder/files
  35. build/*
  36. dist/*
  37. sdist/*
  38. docs/api/*
  39. docs/_rst/*
  40. docs/_build/*
  41. cover/*
  42. MANIFEST
  43. # Per-project virtualenvs
  44. .venv*/
  45. # Output data
  46. data
  47. logs