pyproject.toml 310 B

1234567891011121314151617181920
  1. [project]
  2. name = 'pruncalc'
  3. version = '0'
  4. requires-python = '>=3.13'
  5. dependencies = [
  6. 'cbor2',
  7. 'dulwich',
  8. 'h2',
  9. 'httpx',
  10. 'typed-argument-parser',
  11. ]
  12. [dependency-groups]
  13. dev = ['workers-py', 'workers-runtime-sdk']
  14. [tool.ruff.lint]
  15. ignore = [
  16. 'I001', # unsorted-imports
  17. 'TRY002', # raise-vanilla-class
  18. ]