-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (67 loc) · 1.68 KB
/
pyproject.toml
File metadata and controls
79 lines (67 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[project]
name = "braintrust-langchain"
version = "0.2.1"
description = "Integration for LangChain and Braintrust Tracing"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"braintrust>=0.2.1",
"langchain>=0.3.27",
]
license = "MIT"
authors = [{ name = "Braintrust", email = "info@braintrust.dev" }]
keywords = ["braintrust", "langchain", "llm", "tracing", "ai", "agents"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://www.braintrust.dev"
Repository = "https://github.com/braintrustdata/braintrust-sdk-python"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = { "" = "src" }
include-package-data = false
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["tests*"]
[tool.uv.workspace]
members = [
".",
]
[tool.uv.sources]
braintrust = { path = "../../py", editable = true }
[dependency-groups]
dev = [
"build",
"httpx",
"langchain-anthropic>=0.3.20",
"langchain-openai",
"langgraph>=0.2.1,<0.4.0",
"pre-commit",
"pytest",
"pytest-asyncio>=1.1.0",
"pytest-vcr>=1.0.2",
"ruff",
"tenacity",
"twine",
]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = [
"I", # isort
]
[tool.ruff.lint.isort]
known-first-party = ["braintrust_langchain"]
known-third-party = ["braintrust", "langchain"]
[tool.pytest.ini_options]
testpaths = ["src/tests"]
python_files = ["test_*.py"]
addopts = "-v"