Kumi
00095bb427
The project version has been incremented to 0.0.2 to prepare for the next series of improvements and features. This minor version increment reflects backward-compatible bug fixes or minor enhancements, ensuring that the project adheres to semantic versioning standards and maintains compatibility with dependents.
32 lines
No EOL
940 B
TOML
32 lines
No EOL
940 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "synapse-prometheus-exporter"
|
|
version = "0.0.2"
|
|
authors = [
|
|
{ name="Kumi Mitterer", email="synapse-prometheus-exporter@kumi.email" },
|
|
]
|
|
description = "A Prometheus exporter for Synapse metrics"
|
|
readme = "README.md"
|
|
license = { file="LICENSE" }
|
|
requires-python = ">=3.10"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent"
|
|
]
|
|
dependencies = [
|
|
"prometheus-client",
|
|
"psycopg2-binary",
|
|
"pyyaml",
|
|
]
|
|
|
|
[project.scripts]
|
|
synapse-prometheus-exporter = "synapse_prometheus_exporter.__main__:main"
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://git.private.coffee/kumi/synapse-prometheus-exporter"
|
|
"Bug Tracker" = "https://git.private.coffee/kumi/synapse-prometheus-exporter/issues"
|
|
"Source Code" = "https://git.private.coffee/kumi/synapse-prometheus-exporter" |