-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 835 Bytes
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 835 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
[tool.poetry]
name = "hyperdx-opentelemetry"
version = "0.3.0"
description = "HyperDX OpenTelemetry Distro for Python"
authors = ["HyperDX <support@hyperdx.io>"]
readme = "README.md"
packages = [{include = "hyperdx", from = "src" }]
[tool.poetry.dependencies]
python = ">= 3.9"
opentelemetry-api = "1.30.0"
opentelemetry-sdk = "1.30.0"
opentelemetry-exporter-otlp = "1.30.0"
opentelemetry-instrumentation = "0.51b0"
setuptools = "^75.8.0"
[tool.poetry.group.dev.dependencies]
coverage = ">=6.5,<8.0"
pytest = "^7.2.0"
pylint = "^2.16.0"
pycodestyle = "^2.10.0"
importlib-metadata = { version = ">=0.12", python = "<3.8" }
requests-mock = "^1.10.0"
[tool.poetry.plugins."opentelemetry_distro"]
distro = "hyperdx.opentelemetry.distro:HyperDXDistro"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"