Files
DerGrumpf 76adff71d7 Init
2026-04-26 16:56:13 +00:00

22 lines
477 B
TOML

[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*"]