pyproject.toml 624 B

12345678910111213141516171819202122232425262728293031
  1. [tool.poetry]
  2. name = "jls"
  3. version = "0.1.0"
  4. description = ""
  5. authors = ["wmymz <wmymz@icloud.com>"]
  6. readme = "README.md"
  7. packages = [{ include = "jls", from = "src" }]
  8. [tool.poetry.dependencies]
  9. python = "^3.12"
  10. crypto-plus = "^1.0.5"
  11. grequests = "^0.7.0"
  12. requests = "^2.31.0"
  13. uvicorn = "^0.29.0"
  14. fastapi = "^0.110.3"
  15. click = "^8.1.7"
  16. pydantic = "^2.7.1"
  17. pydantic-core = "^2.18.2"
  18. annotated-types = "^0.6.0"
  19. h11 = "^0.14.0"
  20. [build-system]
  21. requires = ["poetry-core"]
  22. build-backend = "poetry.core.masonry.api"
  23. [[tool.poetry.source]]
  24. name = "tsinghua"
  25. url = "https://pypi.tuna.tsinghua.edu.cn/simple"
  26. priority = "default"