mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-07-31 14:11:50 +08:00

Python 3.8 was EoL @ 2024-10-07, our 6 month promise for support ended on 2024-04-07. Changes: * Updated basline refs to 3.9 * Removed 3.8 sys.version_info checks * Fixed botocore test failure * Applied ruff formatting
50 lines
1.5 KiB
TOML
50 lines
1.5 KiB
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "opentelemetry-propagator-aws-xray"
|
|
dynamic = ["version"]
|
|
description = "AWS X-Ray Propagator for OpenTelemetry"
|
|
readme = "README.rst"
|
|
license = "Apache-2.0"
|
|
requires-python = ">=3.9"
|
|
authors = [
|
|
{ name = "OpenTelemetry Authors", email = "cncf-opentelemetry-contributors@lists.cncf.io" },
|
|
]
|
|
classifiers = [
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: Apache Software License",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3",
|
|
"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",
|
|
]
|
|
dependencies = [
|
|
"opentelemetry-api ~= 1.16",
|
|
]
|
|
|
|
[project.entry-points.opentelemetry_propagator]
|
|
xray = "opentelemetry.propagators.aws:AwsXRayPropagator"
|
|
xray-lambda = "opentelemetry.propagators.aws:AwsXRayLambdaPropagator"
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/propagator/opentelemetry-propagator-aws-xray"
|
|
Repository = "https://github.com/open-telemetry/opentelemetry-python-contrib"
|
|
|
|
[tool.hatch.version]
|
|
path = "src/opentelemetry/propagators/aws/version.py"
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
include = [
|
|
"/src",
|
|
"/tests",
|
|
]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/opentelemetry"]
|