mirror of
https://github.com/wassname/openrouter-python-sdk-retry-errors.git
synced 2026-08-01 12:40:23 +08:00
- f35bb49a8b788937fa61c0cf4591b14f2bc8b217 - 08a37babde9ad8df5e24e0cd865d3292b1627464 - 7ddc8e1ed230ca489bc11a5e14696c209ea76349 - ad31290f38f3f02627f3e1953f1d7cf3e06159a5 - fb7f764b500618e322f56d49997fbcfaebba7e39 - 4306c032b9b4f3cfefeacdd3d243b0336f3b2f15 GitOrigin-RevId: f35bb49a8b788937fa61c0cf4591b14f2bc8b217
55 lines
1.0 KiB
TOML
55 lines
1.0 KiB
TOML
[project]
|
|
name = "openrouter"
|
|
version = "0.7.12"
|
|
description = "Official Python Client SDK for OpenRouter."
|
|
authors = [{ name = "OpenRouter" },]
|
|
readme = "README-PYPI.md"
|
|
requires-python = ">=3.9.2"
|
|
dependencies = [
|
|
"httpcore >=1.0.9",
|
|
"httpx >=0.28.1",
|
|
"pydantic >=2.11.2",
|
|
]
|
|
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"
|
|
|
|
|