.gitignore 620 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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*/
  49. .python-version