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