pyproject.toml 617 B

12345678910111213141516171819202122232425262728
  1. [tool.poetry]
  2. name = "pdf-title-image"
  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. [[tool.poetry.source]]
  20. name = "tsinghua"
  21. url = "https://pypi.tuna.tsinghua.edu.cn/simple"
  22. priority = "primary"
  23. [build-system]
  24. requires = ["poetry-core"]
  25. build-backend = "poetry.core.masonry.api"