pyproject.toml 968 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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.9, <3.13"
  9. jieba = "0.42.1"
  10. numpy = "1.26.2"
  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. sqlalchemy = "^2.0.35"
  22. langchain = "^0.3.9"
  23. langchain-community = "^0.3.8"
  24. sentence-transformers = "^3.3.1"
  25. langchain-experimental = "^0.3.3"
  26. unstructured = "^0.16.8"
  27. markdown = "^3.7"
  28. langchain-huggingface = "^0.1.2"
  29. langchain-chroma = "^0.1.4"
  30. faiss-cpu = "^1.9.0.post1"
  31. python-multipart = "^0.0.20"
  32. [[tool.poetry.source]]
  33. name = "tsinghua"
  34. url = "https://pypi.tuna.tsinghua.edu.cn/simple"
  35. priority = "primary"
  36. [build-system]
  37. requires = ["poetry-core"]
  38. build-backend = "poetry.core.masonry.api"