-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
49 lines (42 loc) · 1.29 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
[tool.poetry]
name = "otel-cli"
version = "0.4.0"
description = "CLI for OpenTelemetry Traces and Metrics in Python"
authors = ["Moshi Binyamini <[email protected]>"]
readme = "README.md"
packages = [{include = "otel_cli"}]
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Environment :: Console",
"Topic :: System :: Monitoring",
"Topic :: Utilities"
]
[tool.poetry.scripts]
otel = "otel_cli.cli:main"
[tool.poetry.dependencies]
python = "^3.7"
Click = "^8.1"
opentelemetry-proto = "~1.16.0"
opentelemetry-sdk = "~1.16.0"
opentelemetry-exporter-otlp = "~1.16.0"
typing-extensions = {version = "~4.5.0", python = "<3.8"}
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
bump2version = "^1.0.1"
pytest-cov = "^4.0.0"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.4.2"
mkdocs-material = "^9.1.9"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "--cov=otel_cli"