pyproject.toml•2.26 kB
[project]
name = "arize-phoenix-otel"
description = "LLM Observability"
readme = "README.md"
requires-python = ">=3.8, <3.14"
license = {text="Apache-2.0"}
license-files = { paths = ["LICENSE", "IP_NOTICE"] }
keywords = [
"Observability",
"Monitoring",
"Explainability",
]
authors = [
{ name = "Arize AI", email = "phoenix-devs@arize.com" },
]
classifiers = [
"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",
"Programming Language :: Python :: 3.13",
]
version = "0.13.1"
dependencies = [
"opentelemetry-semantic-conventions",
"opentelemetry-exporter-otlp",
"opentelemetry-proto>=1.12.0",
"opentelemetry-sdk",
"openinference-semantic-conventions>=0.1.17",
"openinference-instrumentation>=0.1.38",
"typing-extensions>=4.5, <5",
"wrapt",
]
[project.optional-dependencies]
test = [
]
[project.urls]
Documentation = "https://arize.com/docs/phoenix/"
Issues = "https://github.com/Arize-ai/phoenix/issues"
Source = "https://github.com/Arize-ai/phoenix"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/phoenix"]
[tool.hatch.build]
only-packages = true
[tool.hatch.envs.publish]
dependencies = [
"check-wheel-contents",
"twine",
]
[tool.hatch.envs.publish.scripts]
testpypi = [
"check-wheel-contents dist/",
"twine upload --verbose --repository testpypi dist/*",
]
pypi = [
"check-wheel-contents dist/",
"twine upload --verbose dist/*",
]
[tool.ruff]
exclude = [".git", "__pycache__", ".tox", "dist"]
extend-include = ["*.ipynb"]
line-length = 100
target-version = "py38"
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
[tool.ruff.lint.isort]
force-single-line = false
[tool.ruff.lint.per-file-ignores]
"*.ipynb" = ["E402", "E501"]
[tool.ruff.format]
line-ending = "native"
[tool.mypy]
explicit_package_bases = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
strict = true
exclude = [
"dist/",
"tests/",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = [
"tests",
]