.gitignore 471 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. # Output directory
  27. output/
  28. *.zip
  29. # IDE
  30. .vscode/
  31. .idea/
  32. *.swp
  33. *.swo
  34. *~
  35. # OS
  36. .DS_Store
  37. Thumbs.db
  38. # Backups
  39. *.backup
  40. # Testing artifacts
  41. .pytest_cache/
  42. .coverage
  43. htmlcov/
  44. .tox/
  45. *.cover
  46. .hypothesis/
  47. .mypy_cache/
  48. .ruff_cache/
  49. # Build artifacts
  50. .build/