From b5bbae650a9f9598b620e02c24406b8fc0316527 Mon Sep 17 00:00:00 2001 From: Martin Trat Date: Fri, 4 Nov 2022 09:23:20 +0100 Subject: [PATCH] Prepare for release bump version, augment pyproject.toml --- mqttconsumer/__init__.py | 2 +- pyproject.toml | 12 ++++++++++-- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/mqttconsumer/__init__.py b/mqttconsumer/__init__.py index 6247d17..a88f5be 100644 --- a/mqttconsumer/__init__.py +++ b/mqttconsumer/__init__.py @@ -3,6 +3,6 @@ __author__ = """Martin Trat, Simon Fritz""" __email__ = 'martin.trat@gmail.com, ' __license__ = 'MIT' -__version__ = '0.1.2' +__version__ = '0.2.0' from .mqtt_consumer import MQTTConsumer, MQTTDataConsumer diff --git a/pyproject.toml b/pyproject.toml index b18cb4d..20d3f5f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,9 +1,17 @@ [tool.poetry] name = "mqttconsumer" -version = "0.1.2" -description = "" +version = "0.2.0" +description = "Framework for MQTT-consuming analytics applications" +readme = "DESCRIPTION.md" authors = ["Martin Trat ", "Simon Fritz <>"] +homepage = "https://github.com/m-martin-j/mqttconsumer" license = "MIT" +classifiers = [ + "Topic :: Scientific/Engineering :: Artificial Intelligence", + "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 3", + "Development Status :: 2 - Pre-Alpha" +] [tool.poetry.dependencies] python = ">=3.7"