.gitignore 352 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. # Ignore Python artifacts
  2. __pycache__/
  3. *.pyc
  4. *.pyo
  5. *.pyd
  6. # Virtual environments
  7. venv/
  8. ENV/
  9. env/
  10. .venv/
  11. env.bak/
  12. # Node modules (if any)
  13. node_modules/
  14. # Distribution / build
  15. /dist/
  16. build/
  17. dist/
  18. *.egg-info/
  19. # Environment and logs
  20. *.env
  21. .env*
  22. *.log
  23. # IDEs and editors
  24. .vscode/
  25. .idea/
  26. *.swp
  27. *.swo
  28. # Misc
  29. .coverage
  30. .coverage.*
  31. .cache/
  32. *.pytest_cache/