-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 842 Bytes
/
pyproject.toml
File metadata and controls
40 lines (34 loc) · 842 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
37
38
39
40
[project]
name = "sigil-sdk"
version = "0.1.2"
description = "Grafana Sigil Python SDK"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
dependencies = [
"grpcio>=1.78.0",
"protobuf>=6.31.1",
"opentelemetry-api>=1.27.0",
"opentelemetry-sdk>=1.27.0",
"opentelemetry-exporter-otlp-proto-grpc>=1.27.0",
"opentelemetry-exporter-otlp-proto-http>=1.27.0",
"opentelemetry-proto>=1.27.0",
]
[project.optional-dependencies]
dev = [
"grpcio-tools>=1.78.0",
"pytest>=8.2.0",
]
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["sigil_sdk*"]
[tool.setuptools.package-data]
sigil_sdk = ["py.typed"]
[tool.pytest.ini_options]
addopts = "-ra"
testpaths = ["tests"]