.gitignore 417 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # IDE specific
  2. .idea/
  3. # Python bytecode
  4. *.pyc
  5. *.pyo
  6. *.pyd
  7. __pycache__/
  8. *.so
  9. # Flask-specific
  10. logs/
  11. *.log
  12. # Database files
  13. *.sqlite
  14. # Test coverage and Pytest
  15. .pytest_cache/
  16. .coverage
  17. htmlcov/
  18. # Distribution / packaging
  19. .Python
  20. build/
  21. develop-eggs/
  22. dist/
  23. downloads/
  24. eggs/
  25. .eggs/
  26. lib/
  27. lib64/
  28. parts/
  29. sdist/
  30. var/
  31. *.egg-info/
  32. .installed.cfg
  33. *.egg
  34. # 功能结果文件
  35. static/
  36. # 训练数据与任务元数据
  37. data/