This commit is contained in:
DerGrumpf
2026-04-26 16:56:13 +00:00
commit 76adff71d7
10 changed files with 2016 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "xonotic_exporter"
version = "1.0.0"
description = "Prometheus exporter for Xonotic game servers"
requires-python = ">=3.11"
license = { text = "MIT" }
dependencies = [
"xrcon>=0.1",
"prometheus-client>=0.20",
]
[project.scripts]
xonotic-exporter = "xonotic_exporter.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["xonotic_exporter*"]