pyproject.toml 608 B

12345678910111213141516171819202122232425262728293031
  1. [tool.poetry]
  2. name = "mobile-rpa"
  3. version = "0.1.0"
  4. description = ""
  5. authors = ["fzxs88 <fzxs88@yeah.net>"]
  6. readme = "README.md"
  7. [tool.poetry.dependencies]
  8. python = "~3.10"
  9. fastapi = "^0.115.8"
  10. uiautomator2 = "^3.2.8"
  11. uvicorn = "^0.34.0"
  12. numpy = "^2.2.4"
  13. pyinstaller = "^6.12.0"
  14. opencv-python = "^4.11.0.86"
  15. [[tool.poetry.source]]
  16. name = "tsinghua"
  17. url = "https://pypi.tuna.tsinghua.edu.cn/simple"
  18. priority = "explicit"
  19. [tool.poetry.group.dev.dependencies]
  20. pyinstaller = "^6.12.0"
  21. pytest = "^8.3.5"
  22. weditor = "^0.7.3"
  23. [build-system]
  24. requires = ["poetry-core"]
  25. build-backend = "poetry.core.masonry.api"