pyproject.toml 369 B

12345678910111213141516171819
  1. [tool.poetry]
  2. name = "object-detector"
  3. version = "0.1.0"
  4. description = ""
  5. authors = ["fish <zz1036@qq.com>"]
  6. readme = "README.md"
  7. [tool.poetry.dependencies]
  8. python = "^3.12"
  9. opencv-python = "^4.9.0.80"
  10. tqdm = "^4.66.4"
  11. flask = "^3.0.3"
  12. gunicorn = "^22.0.0"
  13. python-dotenv = "^1.0.1"
  14. [build-system]
  15. requires = ["poetry-core"]
  16. build-backend = "poetry.core.masonry.api"