pyproject.toml 437 B

12345678910111213141516171819202122
  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. [[tool.poetry.source]]
  13. name = "tsinghua"
  14. url = "https://pypi.tuna.tsinghua.edu.cn/simple"
  15. priority = "explicit"
  16. [build-system]
  17. requires = ["poetry-core"]
  18. build-backend = "poetry.core.masonry.api"