.gitignore 520 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. .DS_Store
  16. # Project files
  17. .ropeproject
  18. .project
  19. .pydevproject
  20. .settings
  21. .idea
  22. tags
  23. # Package files
  24. *.egg
  25. *.eggs/
  26. .installed.cfg
  27. *.egg-info
  28. # Unittest and coverage
  29. htmlcov/*
  30. .coverage
  31. .tox
  32. junit.xml
  33. coverage.xml
  34. .pytest_cache/
  35. # Build and docs folder/files
  36. build/*
  37. dist/*
  38. sdist/*
  39. docs/api/*
  40. docs/_rst/*
  41. docs/_build/*
  42. cover/*
  43. MANIFEST
  44. # Per-project virtualenvs
  45. .venv*/