pyproject.toml 612 B

123456789101112131415161718192021222324252627
  1. [tool.poetry]
  2. name = "express-relay"
  3. version = "0.5.0"
  4. description = "Utilities for searchers and protocols to interact with the Express Relay protocol."
  5. authors = ["dourolabs"]
  6. license = "Proprietary"
  7. readme = "README.md"
  8. [tool.poetry.dependencies]
  9. python = "^3.11"
  10. web3 = "^6.15.1"
  11. eth_abi = "^4.2.1"
  12. eth_account = "^0.10.0"
  13. httpx = "^0.23.3"
  14. websockets = "^11.0.3"
  15. asyncio = "^3.4.3"
  16. argparse = "^1.4.0"
  17. pydantic = "^2.6.3"
  18. [tool.poetry.group.dev.dependencies]
  19. black = "^24.1.1"
  20. pyflakes = "^3.2.0"
  21. mypy = "^1.9.0"
  22. [build-system]
  23. requires = ["poetry-core>=1.0.0"]
  24. build-backend = "poetry.core.masonry.api"