pyproject.toml 711 B

1234567891011121314151617181920212223242526272829303132
  1. [tool.poetry]
  2. name = "saga_algo_api"
  3. version = "0.1.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.8"
  9. Cython = "^0.29.24"
  10. pandas = "1.2.4"
  11. grpcio = "1.37.1"
  12. pymilvus-orm = "2.0.0rc4"
  13. fastapi = "^0.68.1"
  14. python-dotenv = "^0.19.0"
  15. uvicorn = "^0.13.4"
  16. psycopg2-binary = "^2.9.1"
  17. SQLAlchemy = "^1.4.23"
  18. arrow = "^1.1.1"
  19. loguru = "^0.5.3"
  20. httpx = "^0.19.0"
  21. tencentcloud-sdk-python = "^3.0.470"
  22. scikit-learn = "^0.24.2"
  23. [tool.poetry.dev-dependencies]
  24. pylint = "^2.10.2"
  25. flake8 = "^3.9.2"
  26. black = "^21.7b0"
  27. [build-system]
  28. requires = ["poetry-core>=1.0.0"]
  29. build-backend = "poetry.core.masonry.api"