-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
74 lines (67 loc) · 2.12 KB
/
pyproject.toml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[tool.poetry]
name = "splunk-opentelemetry"
version = "1.21.0"
description = "The Splunk distribution of OpenTelemetry Python Instrumentation provides a Python agent that automatically instruments your Python application to capture and report distributed traces to SignalFx APM."
authors = ["Splunk <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
packages = [
{ include = "splunk_otel" },
{ include = "splunk_otel/**/*.py" },
]
include = [
'CHANGELOG.md',
'README.md',
'LICENSE'
]
[tool.poetry.scripts]
splunk-py-trace = 'splunk_otel.cmd.trace:run'
splunk-py-trace-bootstrap = 'splunk_otel.cmd.bootstrap:run'
# deprecated commands
splk-py-trace = 'splunk_otel.cmd.trace:run_deprecated'
splk-py-trace-bootstrap = 'splunk_otel.cmd.bootstrap:run_deprecated'
[tool.poetry.plugins."opentelemetry_distro"]
splunk_distro = "splunk_otel.distro:_SplunkDistro"
[tool.poetry.dependencies]
cryptography=">=2.0,<=43.0.3"
python = ">=3.8"
protobuf = "^4.23"
opentelemetry-api = "1.27.0"
opentelemetry-sdk = "1.27.0"
opentelemetry-instrumentation = "0.48b0"
opentelemetry-instrumentation-system-metrics = "0.48b0"
opentelemetry-semantic-conventions = "0.48b0"
opentelemetry-propagator-b3 = "1.27.0"
opentelemetry-exporter-otlp-proto-grpc = "1.27.0"
opentelemetry-exporter-otlp-proto-http = "1.27.0"
[tool.poetry.extras]
all = ["opentelemetry-propagator-b3", "opentelemetry-exporter-otlp-proto-grpc"]
b3 = ["opentelemetry-propagator-b3"]
otlp = ["opentelemetry-exporter-otlp-proto-grpc"]
[tool.poetry.dev-dependencies]
flake8 = "~5.0"
mypy = "1.13.0"
black = {version = "24.8.0", python = ">=3.7.0"}
isort = {version = "5.13.2", python = ">=3.7.0"}
pytest = "8.3.3"
coverage = "7.6.1"
pytest-cov = "5.0.0"
pylint = "2.17.7"
pylintfileheader = "0.3.3"
pytest-docker = {version = "3.1.1", platform = "linux"}
requests-futures = "1.0.1"
keepachangelog = "1.0.0"
click = "8.1.7"
types-setuptools = "75.3.0.20241105"
urllib3 = "2.2.3"
wrapt = ">=1.15.0"
[tool.black]
line-length = 90
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "6.2"
addopts = "-ra"
testpaths = [
"tests",
]