|
| 1 | +[build-system] |
| 2 | +requires = ["hatchling"] |
| 3 | +build-backend = "hatchling.build" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "opentelemetry-propagator-aws-xray" |
| 7 | +dynamic = ["version"] |
| 8 | +description = "AWS X-Ray Propagator for OpenTelemetry" |
| 9 | +readme = "README.rst" |
| 10 | +license = "Apache-2.0" |
| 11 | +requires-python = ">=3.7" |
| 12 | +authors = [ |
| 13 | + { name = "OpenTelemetry Authors", email = "[email protected]" }, |
| 14 | +] |
| 15 | +classifiers = [ |
| 16 | + "Development Status :: 5 - Production/Stable", |
| 17 | + "Intended Audience :: Developers", |
| 18 | + "License :: OSI Approved :: Apache Software License", |
| 19 | + "Programming Language :: Python", |
| 20 | + "Programming Language :: Python :: 3", |
| 21 | + "Programming Language :: Python :: 3.7", |
| 22 | + "Programming Language :: Python :: 3.8", |
| 23 | + "Programming Language :: Python :: 3.9", |
| 24 | + "Programming Language :: Python :: 3.10", |
| 25 | +] |
| 26 | +dependencies = [ |
| 27 | + "opentelemetry-api ~= 1.12", |
| 28 | +] |
| 29 | + |
| 30 | +[project.optional-dependencies] |
| 31 | +test = [] |
| 32 | + |
| 33 | +[project.entry-points.opentelemetry_propagator] |
| 34 | +xray = "opentelemetry.propagators.aws:AwsXRayPropagator" |
| 35 | + |
| 36 | +[project.urls] |
| 37 | +Homepage = "https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/propagator/opentelemetry-propagator-aws-xray" |
| 38 | + |
| 39 | +[tool.hatch.version] |
| 40 | +path = "src/opentelemetry/propagators/aws/version.py" |
| 41 | + |
| 42 | +[tool.hatch.build.targets.sdist] |
| 43 | +include = [ |
| 44 | + "/src", |
| 45 | + "/tests", |
| 46 | +] |
| 47 | + |
| 48 | +[tool.hatch.build.targets.wheel] |
| 49 | +packages = ["src/opentelemetry"] |
0 commit comments