-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 984 Bytes
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 984 Bytes
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "partial_span_processor"
version = "0.0.9"
authors = [
{ name = "Mladjan Gadzic", email = "gadzic.mladjan@gmail.com" }
]
description = "OTEL Python SDK extension supporting partial spans"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = { text = "Apache-2.0" }
dependencies = [
"opentelemetry-api",
"opentelemetry-exporter-otlp",
"opentelemetry-exporter-otlp-proto-common",
"opentelemetry-exporter-otlp-proto-grpc",
"opentelemetry-exporter-otlp-proto-http",
"opentelemetry-proto",
"opentelemetry-sdk",
"opentelemetry-semantic-conventions"
]
[project.urls]
Homepage = "https://github.com/G-Research/otel-partial-python"
[tool.setuptools]
packages = ["partial_span_processor"]
package-dir = { "" = "src" }
license-files = ["LICEN[CS]E*"]