mirror of
https://github.com/wassname/openrouter-python-sdk-retry-errors.git
synced 2026-07-29 11:23:49 +08:00
Co-authored-by: speakeasybot <bot@speakeasyapi.dev> Co-authored-by: speakeasy-github[bot] <128539517+speakeasy-github[bot]@users.noreply.github.com>
56 lines
1.1 KiB
TOML
56 lines
1.1 KiB
TOML
[project]
|
|
name = "openrouter"
|
|
version = "0.11.31"
|
|
description = "Official Python Client SDK for OpenRouter."
|
|
authors = [{ name = "OpenRouter" },]
|
|
readme = "README-PYPI.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"httpcore >=1.0.9",
|
|
"httpx >=0.28.1",
|
|
"jsonpath-python >=1.0.6",
|
|
"pydantic >=2.11.2,<2.13",
|
|
]
|
|
urls.repository = "https://github.com/OpenRouterTeam/python-sdk.git"
|
|
license = { text = "Apache-2.0" }
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"mypy ==1.15.0",
|
|
"pylint ==3.2.3",
|
|
"pyright ==1.1.398",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.setuptools.package-data]
|
|
"*" = ["py.typed"]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=80", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_default_fixture_loop_scope = "function"
|
|
pythonpath = ["src"]
|
|
|
|
[tool.mypy]
|
|
disable_error_code = "misc"
|
|
explicit_package_bases = true
|
|
mypy_path = "src"
|
|
|
|
[[tool.mypy.overrides]]
|
|
module = "typing_inspect"
|
|
ignore_missing_imports = true
|
|
|
|
[[tool.mypy.overrides]]
|
|
module = "jsonpath"
|
|
ignore_missing_imports = true
|
|
|
|
[tool.pyright]
|
|
venvPath = "."
|
|
venv = ".venv"
|
|
|
|
|