2024-05-15 20:41:26 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "postgres-connection-exporter"
|
2024-05-16 04:33:21 +00:00
|
|
|
version = "0.0.2"
|
2024-05-15 20:41:26 +00:00
|
|
|
authors = [
|
|
|
|
{ name="Kumi Mitterer", email="postgres-connection-exporter@kumi.email" },
|
|
|
|
]
|
|
|
|
description = "A Prometheus exporter for PostgreSQL connection 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]
|
|
|
|
postgres-connection-exporter = "postgres_connection_exporter.__main__:main"
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
"Homepage" = "https://git.private.coffee/kumi/postgres-connection-exporter"
|
|
|
|
"Bug Tracker" = "https://git.private.coffee/kumi/postgres-connection-exporter/issues"
|
|
|
|
"Source Code" = "https://git.private.coffee/kumi/postgres-connection-exporter"
|