fork of hey-api/openapi-ts because I need some additional things
1[project]
2name = "hey-api-dev"
3version = "0.0.0"
4requires-python = ">=3.9"
5
6[dependency-groups]
7dev = ["httpx>=0.27", "mypy>=1.15", "pydantic>=2.0", "ruff>=0.11"]
8
9[tool.mypy]
10python_version = "3.9"
11strict = false
12warn_return_any = true
13warn_unused_configs = true
14
15[tool.ruff]
16line-length = 120
17target-version = "py310"
18
19[tool.ruff.format]
20exclude = ["**/__snapshots__/**"]
21
22[tool.ruff.lint]
23select = ["E", "F", "W", "I"]