-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
59 lines (53 loc) · 1.76 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/arize/otel/version.py"
[tool.hatch.build]
only-packages = true
[tool.hatch.build.targets.wheel]
packages = ["src/arize"]
[project]
name = "arize-otel"
description = "Helper package for OTEL setup to send traces to Arize & Phoenix"
readme = "README.md"
requires-python = ">=3.8, <3.13"
license = { text = "BSD" }
keywords = [
"Observability",
"Monitoring",
"Explainability",
"Tracing"
]
authors = [
{ name = "Arize AI", email = "[email protected]" },
]
maintainers = [
{ name = "Arize AI", email = "[email protected]" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Logging",
"Topic :: System :: Monitoring",
]
dependencies = [
"openinference-semantic-conventions>=0.1.5",
"opentelemetry-sdk>=1.22",
"opentelemetry-exporter-otlp>=1.22",
"opentelemetry-proto>=1.12.0", # needed to avoid this issue: https://github.com/Arize-ai/phoenix/issues/2695
]
dynamic = ["version"]
[project.urls]
Documentation = "https://docs.arize.com/arize/large-language-models/tracing"
Issues = "https://github.com/Arize-ai/arize-otel-python/issues"
Source = "https://github.com/Arize-ai/arize-otel-python"
Changelog = "https://github.com/Arize-ai/arize-otel-python/blob/main/CHANGELOG.md"