.gitignore 384 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. # 虚拟环境
  23. venv/
  24. env/
  25. ENV/
  26. .venv
  27. # 环境变量
  28. .env
  29. .env.local
  30. # IDE
  31. .vscode/
  32. .idea/
  33. *.swp
  34. *.swo
  35. *~
  36. # 日志
  37. *.log
  38. # 测试
  39. .pytest_cache/
  40. .coverage
  41. htmlcov/
  42. # 操作系统
  43. .DS_Store
  44. Thumbs.db