pyproject.toml 724 B

123456789101112131415161718192021222324252627282930313233
  1. [tool.poetry]
  2. name = "saga_algo_api"
  3. version = "0.3.0"
  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.24"
  10. pandas = "1.2.4"
  11. grpcio = "1.37.1"
  12. pymilvus = "2.0.0rc8"
  13. fastapi = "^0.70.0"
  14. python-dotenv = "^0.19.1"
  15. uvicorn = "^0.15.0"
  16. psycopg2-binary = "^2.9.1"
  17. SQLAlchemy = "^1.4.23"
  18. redis = "^3.5.3"
  19. arrow = "^1.1.1"
  20. loguru = "^0.5.3"
  21. httpx = "^0.19.0"
  22. tencentcloud-sdk-python = "^3.0.489"
  23. scikit-learn = "^0.24.2"
  24. [tool.poetry.dev-dependencies]
  25. pylint = "^2.11.1"
  26. flake8 = "^3.9.2"
  27. black = "^21.7b0"
  28. [build-system]
  29. requires = ["poetry-core>=1.0.0"]
  30. build-backend = "poetry.core.masonry.api"