|
| 1 | +[build-system] |
| 2 | +requires = ["hatchling"] |
| 3 | +build-backend = "hatchling.build" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "opentelemetry-exporter-otlp" |
| 7 | +dynamic = ["version"] |
| 8 | +description = "OpenTelemetry Collector Exporters" |
| 9 | +readme = "README.rst" |
| 10 | +license = "Apache-2.0" |
| 11 | +requires-python = ">=3.7" |
| 12 | +authors = [ |
| 13 | + { name = "OpenTelemetry Authors", email = "cncf-opentelemetry-contributors@lists.cncf.io" }, |
| 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 | + "Typing :: Typed", |
| 26 | +] |
| 27 | +dependencies = [ |
| 28 | + "opentelemetry-exporter-otlp-proto-grpc == 1.12.0", |
| 29 | + "opentelemetry-exporter-otlp-proto-http == 1.12.0", |
| 30 | +] |
| 31 | + |
| 32 | +[project.entry-points.opentelemetry_logs_exporter] |
| 33 | +otlp = "opentelemetry.exporter.otlp.proto.grpc._log_exporter:OTLPLogExporter" |
| 34 | + |
| 35 | +[project.entry-points.opentelemetry_metrics_exporter] |
| 36 | +otlp = "opentelemetry.exporter.otlp.proto.grpc.metric_exporter:OTLPMetricExporter" |
| 37 | + |
| 38 | +[project.entry-points.opentelemetry_traces_exporter] |
| 39 | +otlp = "opentelemetry.exporter.otlp.proto.grpc.trace_exporter:OTLPSpanExporter" |
| 40 | + |
| 41 | +[project.urls] |
| 42 | +Homepage = "https://github.com/open-telemetry/opentelemetry-python/tree/main/exporter/opentelemetry-exporter-otlp" |
| 43 | + |
| 44 | +[tool.hatch.version] |
| 45 | +path = "src/opentelemetry/exporter/otlp/version.py" |
| 46 | + |
| 47 | +[tool.hatch.build.targets.sdist] |
| 48 | +include = [ |
| 49 | + "/src", |
| 50 | + "/tests", |
| 51 | +] |
| 52 | + |
| 53 | +[tool.hatch.build.targets.wheel] |
| 54 | +packages = ["src/opentelemetry"] |
0 commit comments