.gitignore 452 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # Python
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. *.so
  6. .Python
  7. build/
  8. develop-eggs/
  9. dist/
  10. downloads/
  11. eggs/
  12. .eggs/
  13. lib/
  14. lib64/
  15. parts/
  16. sdist/
  17. var/
  18. wheels/
  19. *.egg-info/
  20. .installed.cfg
  21. *.egg
  22. # Virtual Environment
  23. venv/
  24. ENV/
  25. env/
  26. # IDE
  27. .vscode/
  28. .idea/
  29. *.swp
  30. *.swo
  31. *~
  32. # Environment Variables
  33. .env
  34. # Output
  35. example_output/
  36. column_output/
  37. # OS
  38. .DS_Store
  39. Thumbs.db
  40. # Logs
  41. *.log
  42. # Jupyter Notebook
  43. .ipynb_checkpoints
  44. # Testing
  45. .pytest_cache/
  46. .coverage
  47. htmlcov/