pyproject.toml 648 B

123456789101112131415161718192021222324252627282930313233
  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. package-mode = false
  8. [tool.poetry.dependencies]
  9. python = "~3.10"
  10. fastapi = "^0.115.8"
  11. uiautomator2 = "3.2.9"
  12. uvicorn = "^0.34.0"
  13. numpy = "^2.2.4"
  14. pyinstaller = "^6.12.0"
  15. opencv-python = "^4.11.0.86"
  16. schedule = "^1.2.2"
  17. [[tool.poetry.source]]
  18. name = "tsinghua"
  19. url = "https://pypi.tuna.tsinghua.edu.cn/simple"
  20. priority = "explicit"
  21. [tool.poetry.group.dev.dependencies]
  22. pyinstaller = "^6.12.0"
  23. pytest = "^8.3.5"
  24. weditor = "^0.7.3"
  25. [build-system]
  26. requires = ["poetry-core"]
  27. build-backend = "poetry.core.masonry.api"