pyproject.toml 981 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. [project]
  2. name = "de_quoi_parle_le_monde"
  3. version = "0.1.0"
  4. description = "Default template for PDM package"
  5. authors = [
  6. {name = "jherve", email = "julien.jev.herve@gmail.com"},
  7. ]
  8. dependencies = [
  9. "requests>=2.31.0",
  10. "requests-cache>=1.2.0",
  11. "beautifulsoup4>=4.12.3",
  12. "attrs>=23.2.0",
  13. "cattrs>=23.2.3",
  14. "ruff>=0.2.2",
  15. "aiohttp>=3.9.3",
  16. "aiohttp-client-cache[all]>=0.11.0",
  17. "lxml>=5.1.0",
  18. "aiolimiter>=1.1.0",
  19. "yarl>=1.9.4",
  20. "loguru>=0.7.2",
  21. "sentence-transformers>=2.6.1",
  22. "hypercorn>=0.16.0",
  23. "fastapi>=0.110.1",
  24. "jinja2>=3.1.3",
  25. "faiss-cpu>=1.8.0",
  26. "sentencepiece>=0.2.0",
  27. "protobuf>=5.26.1",
  28. ]
  29. readme = "README.md"
  30. requires-python = ">= 3.10"
  31. [build-system]
  32. requires = ["hatchling"]
  33. build-backend = "hatchling.build"
  34. [tool.rye]
  35. managed = true
  36. dev-dependencies = []
  37. [tool.hatch.metadata]
  38. allow-direct-references = true
  39. [tool.hatch.build.targets.wheel]
  40. packages = ["src/de_quoi_parle_le_monde"]