gpuproject.toml 766 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. [tool.poetry]
  2. name = "app"
  3. version = "0.1.0"
  4. description = ""
  5. authors = ["tomoya <tomoya@choozmo.com>"]
  6. [tool.poetry.dependencies]
  7. python = "^3.8.0"
  8. Pillow = "^9.4.0"
  9. pydantic = "^1.10.4"
  10. mysql-connector-python = "^8.0.32"
  11. mysqlclient = "^2.1.1"
  12. sqlalchemy = "^1.4.0"
  13. opencv-python = "^4.7.0"
  14. requests = "^2.23.0"
  15. celery = "^5.2.7"
  16. tenacity = "^8.0.0"
  17. pytest = "^7.2.0"
  18. torch = "^1.13.0"
  19. torchvision = "^0.14.0"
  20. torchaudio = "^0.13.0"
  21. [tool.poetry.dev-dependencies]
  22. mypy = "^0.991"
  23. black = "^19.10b0"
  24. isort = "^5.11.0"
  25. autoflake = "^1.3.1"
  26. pytest = "^7.2.0"
  27. pytest-cov = "^4.0.0"
  28. [tool.isort]
  29. multi_line_output = 3
  30. include_trailing_comma = true
  31. force_grid_wrap = 0
  32. line_length = 88
  33. [build-system]
  34. requires = ["poetry>=0.12"]
  35. build-backend = "poetry.masonry.api"