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]