From 01db3da37e916bb76b09255ce3a852f4864e9fe6 Mon Sep 17 00:00:00 2001 From: Jim Mussared Date: Fri, 31 Mar 2023 14:21:37 +1100 Subject: [PATCH] senml: Allow publishing to PyPI as micropython-senml. Signed-off-by: Jim Mussared --- micropython/senml/manifest.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/micropython/senml/manifest.py b/micropython/senml/manifest.py index e09f1ab7..216717ca 100644 --- a/micropython/senml/manifest.py +++ b/micropython/senml/manifest.py @@ -1,4 +1,8 @@ -metadata(version="0.1.0") +metadata( + description="SenML serialisation for MicroPython.", + version="0.1.0", + pypi_publish="micropython-senml", +) require("cbor2")