pyproject.toml 1004 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. "dynaconf>=3.2.5",
  29. ]
  30. readme = "README.md"
  31. requires-python = ">= 3.10"
  32. [build-system]
  33. requires = ["hatchling"]
  34. build-backend = "hatchling.build"
  35. [tool.rye]
  36. managed = true
  37. dev-dependencies = []
  38. [tool.hatch.metadata]
  39. allow-direct-references = true
  40. [tool.hatch.build.targets.wheel]
  41. packages = ["src/de_quoi_parle_le_monde"]