From 7a96b6c9421f17bf40f2115a9a318979441f5643 Mon Sep 17 00:00:00 2001 From: Juergen Hoetzel Date: Fri, 25 Oct 2024 07:14:22 +0200 Subject: [PATCH] Run on push and pull request Fix description --- .github/workflows/python-package.yml | 6 +----- flowercare_exporter/__init__.py | 2 +- pyproject.toml | 3 ++- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 716cc0e..389a5bb 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -3,11 +3,7 @@ name: Python package -on: - push: - branches: ["master"] - pull_request: - branches: ["master"] +on: [push, pull_request] jobs: build: diff --git a/flowercare_exporter/__init__.py b/flowercare_exporter/__init__.py index 75c1e08..b3a5e3b 100644 --- a/flowercare_exporter/__init__.py +++ b/flowercare_exporter/__init__.py @@ -1,3 +1,3 @@ -"""Export Miflora sensor data using Bluetooth Prometheus""" +"""Export Miflora Bluetooth LE sensor to Graphite and Prometheus""" __version__ = "0.1.7" diff --git a/pyproject.toml b/pyproject.toml index 49ac8d2..28be7ae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,8 @@ name = "flowercare_exporter" authors = [{name = "Jürgen Hötzel", email = "juergen@hoetzel.info"}] license = {file = "LICENSE"} classifiers = ["License :: OSI Approved :: MIT License"] -dynamic = ["version", "description"] +description = "Export Miflora Bluetooth LE sensor to Graphite and Prometheus" +dynamic = ["version"] dependencies = ["PyGObject", "prometheus-client"] [project.urls]