pyproject.toml 659 B

123456789101112131415161718192021222324252627282930
  1. [tool.poetry]
  2. name = "celery_tasks"
  3. version = "0.1.0"
  4. description = ""
  5. authors = ["sprivacy <sprivacy@DESKTOP-4J47F0K.localhost>"]
  6. readme = "README.md"
  7. [tool.poetry.dependencies]
  8. python = "^3.10"
  9. jieba = "0.42.1"
  10. numpy = "1.24.4"
  11. pandas = "1.5.3"
  12. torch = "2.3.0"
  13. camelot = "0.20.1"
  14. chromadb = "^0.5.5"
  15. transformers = "4.41.2"
  16. scikit-learn = "1.1.1"
  17. celery = {extras = ["redis"], version = "^5.4.0"}
  18. jiagu = "^0.2.3"
  19. fuzzywuzzy = "^0.18.0"
  20. instructor = "^1.4.2"
  21. [[tool.poetry.source]]
  22. name = "tsinghua"
  23. url = "https://pypi.tuna.tsinghua.edu.cn/simple"
  24. priority = "primary"
  25. [build-system]
  26. requires = ["poetry-core"]
  27. build-backend = "poetry.core.masonry.api"