-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
101 lines (91 loc) · 3.01 KB
/
pyproject.toml
File metadata and controls
101 lines (91 loc) · 3.01 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[project]
name = "llm-tracekit"
version = "2.0.0"
description = "Meta-package for LLM Tracekit - OpenTelemetry instrumentations for LLM providers."
readme = "README.md"
authors = [
{ name="Coralogix Ltd.", email="info@coralogix.com" },
]
license = "Apache-2.0"
license-files = ["LICENSE"]
requires-python = ">=3.10,<3.14"
dependencies = [
"llm-tracekit-core>=1.0.0",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: OpenTelemetry :: Instrumentations",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.optional-dependencies]
openai = ["llm-tracekit-openai>=1.0.0"]
bedrock = ["llm-tracekit-bedrock>=1.0.0"]
gemini = ["llm-tracekit-gemini>=1.0.0"]
openai-agents = ["llm-tracekit-openai-agents>=1.0.0"]
guardrails = ["cx-guardrails>=1.0.0"]
langchain = ["llm-tracekit-langchain>=1.0.0"]
google-adk = ["llm-tracekit-google-adk>=1.0.0"]
langgraph = ["llm-tracekit-langgraph>=1.0.0"]
litellm = ["llm-tracekit-litellm>=1.0.0"]
[project.urls]
homepage = "https://coralogix.com"
repository = "https://github.com/coralogix/llm-tracekit.git"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
bypass-selection = true
[tool.hatch.build.targets.sdist]
only-include = []
[dependency-groups]
dev = [
"mypy>=1.0.0",
"pre-commit>=3.0.0",
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-vcr>=1.0.2",
"ruff>=0.4.0",
"types-PyYAML>=6.0.0",
"assertpy>=1.1",
"pyyaml>=6.0",
"brotli>=1.1.0",
"respx>=0.21.0",
"langchain-openai>=0.3.0",
"langchain-aws>=0.2.0",
]
[tool.uv.workspace]
members = [
"core",
"guardrails",
"instrumentations/openai",
"instrumentations/openai-agents",
"instrumentations/bedrock",
"instrumentations/gemini",
"instrumentations/langchain",
"instrumentations/langgraph",
"instrumentations/litellm",
"instrumentations/google-adk",
]
[tool.uv.sources]
llm-tracekit-core = { workspace = true }
llm-tracekit-openai = { workspace = true }
llm-tracekit-bedrock = { workspace = true }
llm-tracekit-gemini = { workspace = true }
llm-tracekit-openai-agents = { workspace = true }
llm-tracekit-google-adk = { workspace = true }
cx-guardrails = { workspace = true }
llm-tracekit-langchain = { workspace = true }
llm-tracekit-langgraph = { workspace = true }
llm-tracekit-litellm = { workspace = true }
[tool.mypy]
ignore_missing_imports = true
namespace_packages = true
explicit_package_bases = true
mypy_path = "core/src:instrumentations/openai/src:instrumentations/bedrock/src:instrumentations/gemini/src:instrumentations/langchain/src:instrumentations/langgraph/src:instrumentations/litellm/src:instrumentations/openai-agents/src:instrumentations/google-adk/src:guardrails/src"
exclude = ["tests/"]