forked from signalfx/splunk-otel-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
72 lines (65 loc) · 2.15 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
[tool.poetry]
name = "splunk-opentelemetry"
version = "1.8.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]
python = "^3.6"
opentelemetry-api = "1.12.0"
opentelemetry-sdk = "1.12.0"
opentelemetry-instrumentation = "0.33b0"
opentelemetry-semantic-conventions = "0.33b0"
opentelemetry-propagator-b3 = "1.12.0"
opentelemetry-exporter-jaeger-thrift = "1.12.0"
opentelemetry-exporter-otlp-proto-grpc = "1.12.0"
[tool.poetry.extras]
all = ["opentelemetry-propagator-b3", "opentelemetry-exporter-otlp-proto-grpc", "opentelemetry-exporter-jaeger-thrift"]
b3 = ["opentelemetry-propagator-b3"]
otlp = ["opentelemetry-exporter-otlp-proto-grpc"]
jaeger = ["opentelemetry-exporter-jaeger-thrift"]
[tool.poetry.dev-dependencies]
flake8 = "4.0.1"
mypy = "0.971"
black = {version = "22.6.0", python = ">=3.7.0"}
isort = {version = "5.9.3", python = ">=3.7.0"}
pytest = "7.0.1"
coverage = "6.1.1"
pytest-cov = "2.12.1"
pylint = "2.12.0"
pylintfileheader = "0.3.2"
pytest-docker = {version = "1.0.0", platform = "linux"}
requests-futures = "1.0.0"
#githubrelease = "1.5.8"
githubrelease = {path = "./vendor/githubrelease-1.5.8-23-g067d7f1.tar.gz"}
keepachangelog = "1.0.0"
click = "8.0.4"
types-setuptools = "65.3.0"
[tool.black]
line-length = 90
requires = ["poetry>=1.1.11"]
build-backend = "poetry.masonry.api"
[tool.pytest.ini_options]
minversion = "6.2"
addopts = "-ra"
testpaths = [
"tests",
]