pyproject.toml 722 B

12345678910111213141516171819202122232425262728293031323334
  1. [tool.poetry]
  2. name = "saga_algo_api"
  3. version = "0.4.5"
  4. description = "SagaCare Algorithm Web Server"
  5. authors = ["highing666 <bigseabigdream@gmail.com>"]
  6. license = "Apache-2.0"
  7. [tool.poetry.dependencies]
  8. python = "^3.9"
  9. Cython = "^0.29.29"
  10. pandas = "1.4.2"
  11. grpcio = "1.37.1"
  12. fastapi = "^0.78.0"
  13. python-dotenv = "^0.20.0"
  14. uvicorn = "^0.17.6"
  15. psycopg2-binary = "^2.9.3"
  16. SQLAlchemy = "^1.4.36"
  17. redis = "^4.3.1"
  18. arrow = "^1.2.2"
  19. loguru = "^0.6.0"
  20. httpx = "^0.22.0"
  21. scikit-learn = "^1.1.0"
  22. tencentcloud-sdk-python = "^3.0.635"
  23. pymilvus = "^2.0.2"
  24. [tool.poetry.dev-dependencies]
  25. pylint = "^2.13.4"
  26. flake8 = "^4.0.1"
  27. black = "^22.3.0"
  28. [build-system]
  29. requires = ["poetry-core>=1.0.0"]
  30. build-backend = "poetry.core.masonry.api"