pyproject.toml 520 B

123456789101112131415161718192021222324
  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. ]
  18. requires-python = "==3.11.*"
  19. readme = "README.md"
  20. license = {text = "MIT"}
  21. [tool.pdm]
  22. distribution = false