-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (26 loc) · 804 Bytes
/
Copy pathpyproject.toml
File metadata and controls
29 lines (26 loc) · 804 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "signoz-otlp-verify"
version = "0.1.0"
description = "Verify self-hosted SigNoz OTLP ingestion from Kubernetes and produce support-ready reports."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Saif" }]
keywords = ["signoz", "opentelemetry", "kubernetes", "devops", "observability"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3",
"Topic :: System :: Monitoring",
]
dependencies = [
"kubernetes>=29.0.0",
]
[project.scripts]
signoz-otlp-verify = "signoz_otlp_verify.cli:main"
[tool.setuptools.packages.find]
where = ["src"]