This repository was archived by the owner on Apr 27, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (53 loc) · 1.77 KB
/
pyproject.toml
File metadata and controls
57 lines (53 loc) · 1.77 KB
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
[project]
name = "otlp-json"
version = "1.0.1"
description = "🐍Lightweight OTEL span to JSON converter, no dependencies, pure Python🐍"
requires-python = ">=3.8"
license = {text = "Apache License (2.0)"}
readme = "readme.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries",
"Framework :: OpenTelemetry",
"Framework :: OpenTelemetry :: Exporters",
]
dependencies = []
[project.urls]
"Repository" = "https://github.com/dimaqq/otlp-json"
"Issues" = "https://github.com/dimaqq/otlp-json/issues"
[dependency-groups]
dev = [
"opentelemetry-api ~= 1.30", # 1.30 fixed type hints for Python 3.8
"typing_extensions ~= 4.12",
"pyright ~= 1.1",
"ruff ~= 0.9",
]
testing = [
"pytest ~= 8.3.4",
"otlp-test-data >= 1.0.2",
]
[ tool.uv]
constraint-dependencies = [
"wrapt ~= 1.14.0; python_version >= '3.11'",
"protobuf>=6.31.0; python_version >= '3.14'",
]
exclude-dependencies = ["grpcio"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"