mirror of
https://github.com/langchain-ai/langsmith-sdk-christopher.git
synced 2026-07-18 09:58:32 -04:00
86 lines
1.8 KiB
TOML
86 lines
1.8 KiB
TOML
[tool.poetry]
|
|
name = "langsmith"
|
|
version = "0.1.23"
|
|
description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform."
|
|
authors = ["LangChain <support@langchain.dev>"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
repository = "https://github.com/langchain-ai/langsmith-sdk"
|
|
homepage = "https://smith.langchain.com/"
|
|
documentation = "https://docs.smith.langchain.com/"
|
|
keywords = [
|
|
"langsmith",
|
|
"langchain",
|
|
"llm",
|
|
"nlp",
|
|
"language",
|
|
"translation",
|
|
"evaluation",
|
|
"tracing",
|
|
"platform",
|
|
]
|
|
packages = [{ include = "langsmith" }]
|
|
|
|
[tool.poetry.scripts]
|
|
langsmith = "langsmith.cli.main:main"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.8.1,<4.0"
|
|
pydantic = ">=1,<3"
|
|
requests = "^2"
|
|
orjson = "^3.9.14"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^7.3.1"
|
|
black = "^23.3.0"
|
|
mypy = "^1.3.0"
|
|
ruff = "^0.1.5"
|
|
pydantic = ">=1,<2"
|
|
types-requests = "^2.31.0.1"
|
|
pandas-stubs = "^2.0.1.230501"
|
|
types-pyyaml = "^6.0.12.10"
|
|
pytest-asyncio = "^0.21.0"
|
|
types-psutil = "^5.9.5.16"
|
|
psutil = "^5.9.5"
|
|
freezegun = "^1.2.2"
|
|
pytest-subtests = "^0.11.0"
|
|
pytest-watcher = "^0.3.4"
|
|
pytest-xdist = "^3.5.0"
|
|
pytest-cov = "^4.1.0"
|
|
dataclasses-json = "^0.6.4"
|
|
|
|
[tool.poetry.group.lint.dependencies]
|
|
openai = "^1.10"
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.ruff]
|
|
select = [
|
|
"E", # pycodestyle
|
|
"F", # pyflakes
|
|
"I", # isort
|
|
"D", # pydocstyle
|
|
"D401", # First line should be in imperative mood
|
|
]
|
|
ignore = [
|
|
# Relax the convention by _not_ requiring documentation for every function parameter.
|
|
"D417",
|
|
]
|
|
[tool.ruff.lint.pydocstyle]
|
|
convention = "google"
|
|
|
|
[tool.ruff.lint.per-file-ignores]
|
|
"tests/*" = ["D"]
|
|
"langsmith/cli/*" = ["D"]
|
|
|
|
[tool.mypy]
|
|
ignore_missing_imports = "True"
|
|
disallow_untyped_defs = "True"
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|