From b85edb9f8b0c184ace7287334114072fb4c6980c Mon Sep 17 00:00:00 2001 From: Kevin Petremann Date: Fri, 14 Jun 2024 17:32:07 +0200 Subject: [PATCH] ci: update pyproject.toml --- pyproject.toml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index ab4a4b6..8d41eee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,10 +2,23 @@ name = "mqtt-exporter" version = "1.4.4" description = "Simple generic MQTT Prometheus exporter for IoT working out of the box" +readme = "README.md" license = { text = "MIT License" } authors = [ { name = "Kevin Petremann", email = "kpetrem@gmail.com" }, ] +keywords = ["iot", "mqtt", "prometheus"] +classifiers = [ + "Development Status :: 5 - Production/Stable", + "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", +] + +[project.urls] +Homepage = "https://github.com/kpetremann/mqtt-exporter" [project.scripts] mqtt-exporter = "mqtt_exporter.main:main"