pyproject.toml 628 B

1234567891011121314151617181920212223242526272829303132
  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. weditor = "^0.7.3"
  12. uvicorn = "^0.34.0"
  13. numpy = "^2.2.4"
  14. opencv-python = "^4.11.0.86"
  15. wxpython = "^4.2.2"
  16. pyinstaller = "^6.12.0"
  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. [build-system]
  25. requires = ["poetry-core"]
  26. build-backend = "poetry.core.masonry.api"