mirror of
https://github.com/langchain-ai/langsmith-sdk-christopher.git
synced 2026-07-21 00:05:23 -04:00
43 lines
859 B
TOML
43 lines
859 B
TOML
[tool.poetry]
|
|
name = "langsmith"
|
|
version = "0.0.15"
|
|
description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform."
|
|
authors = ["LangChain"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
packages = [{include = "langsmith"}]
|
|
|
|
[tool.poetry.scripts]
|
|
langsmith = "langsmith.cli.main:main"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.8.1,<4.0"
|
|
pydantic = "^1"
|
|
requests = "^2"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^7.3.1"
|
|
black = "^23.3.0"
|
|
mypy = "^1.3.0"
|
|
ruff = "^0.0.270"
|
|
types-requests = "^2.31.0.1"
|
|
pandas-stubs = "^2.0.1.230501"
|
|
types-pyyaml = "^6.0.12.10"
|
|
pytest-asyncio = "^0.21.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.ruff]
|
|
select = [
|
|
"E", # pycodestyle
|
|
"F", # pyflakes
|
|
"I", # isort
|
|
]
|
|
|
|
[tool.mypy]
|
|
ignore_missing_imports = "True"
|
|
disallow_untyped_defs = "True"
|