pyproject.toml 695 B

1234567891011121314151617181920212223242526272829303132333435
  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 = "aliyun"
  19. url = "https://mirrors.aliyun.com/pypi/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. websockets = "^15.0.1"
  26. websockets-proxy = "^0.1.3"
  27. [build-system]
  28. requires = ["poetry-core"]
  29. build-backend = "poetry.core.masonry.api"