-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 746 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (31 loc) · 746 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
31
32
33
34
35
36
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "opentelemetry-proto-native"
version = "0.1.0"
description = "OpenTelemetry Protobuf Native"
readme = "README.md"
authors = [
{ name = "Lukas Hering", email = "lukasheringb@gmail.com" }
]
requires-python = ">=3.9"
dependencies = [
"opentelemetry-api>=1.41.0",
"opentelemetry-sdk>=1.41.0",
]
[tool.maturin]
python-source = "src"
module-name = "opentelemetry.proto_native._rs"
[tool.uv]
cache-keys = [
{ file = "rust/Cargo.toml" },
{ file = "rust/Cargo.lock" },
{ file = "rust/src/**" },
]
[dependency-groups]
dev = [
"opentelemetry-exporter-otlp-proto-common>=1.41.0",
"pytest>=8.4.2",
"pytest-benchmark>=5.2.3",
]