pyproject.toml 364 B

123456789101112131415161718
  1. [tool.poetry]
  2. name = "dlib-demo"
  3. version = "0.1.0"
  4. description = ""
  5. authors = ["ggsky <49913154+ggsky@users.noreply.github.com>"]
  6. readme = "README.md"
  7. [tool.poetry.dependencies]
  8. python = "^3.10"
  9. dlib = "^19.24.4"
  10. opencv-python = "^4.9.0.80"
  11. numpy = "^1.26.4"
  12. pandas = "^2.2.2"
  13. [build-system]
  14. requires = ["poetry-core"]
  15. build-backend = "poetry.core.masonry.api"