pyproject.toml 669 B

123456789101112131415161718192021222324252627282930
  1. [tool.poetry]
  2. name = "saga_algo_api"
  3. version = "0.4.16"
  4. description = "SagaCare Algorithm Web Server"
  5. authors = ["highing666 <bigseabigdream@gmail.com>"]
  6. license = "Apache-2.0"
  7. [tool.poetry.dependencies]
  8. python = "^3.10"
  9. fastapi = "^0.79.0"
  10. python-dotenv = "^0.20.0"
  11. uvicorn = "^0.18.2"
  12. psycopg2-binary = "^2.9.3"
  13. SQLAlchemy = "^1.4.40"
  14. redis = "^4.3.4"
  15. arrow = "^1.2.2"
  16. loguru = "^0.6.0"
  17. httpx = "^0.23.0"
  18. scikit-learn = "^1.1.2"
  19. tencentcloud-sdk-python = "^3.0.715"
  20. pymilvus = "^2.1.1"
  21. [tool.poetry.dev-dependencies]
  22. pylint = "^2.13.4"
  23. flake8 = "^4.0.1"
  24. black = "^22.3.0"
  25. [build-system]
  26. requires = ["poetry-core>=1.1.14"]
  27. build-backend = "poetry.core.masonry.api"